/* Gotham Font Family */

/* Gotham Regular */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gotham Medium */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gotham Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Gotham Thin */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Gotham Ultra */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Gotham Rounded */
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Narrow */
@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Narrow */
@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0083B0;
  --primary-lighter: #00A8E8;
  --primary-rgba: rgba(0, 131, 176, 0.64);
  --primary-linear: linear-gradient(90deg, #0083B0 0%, rgba(0, 168, 232, 0) 100%);
  --white: #fff;
  --black: #000;
  --font: "Gotham", sans-serif;
  --transition: all 0.3s ease-in-out;
  --brand-brown: #634226;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%; 
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header Styles */
.site-header {
  background-color: var(--white);
  width: 100%;
  position: relative;
  z-index: 1000;
}

.logo-area {
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo img {
  width: 270px;
  display: block;
  margin: 0 auto;
}

.menu-content {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav {
  padding: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
}

.menu {
  display: flex;
  gap: 4.5rem;
  align-items: center;
}

.menu-item {
  position: relative;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #3e444a;
  text-transform: uppercase;
}

.menu-item a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 0;
  transition: var(--transition);
  color: #3e444a;
  font-size: 1.3rem;
  font-weight: 700;
}

.menu-item.active a,
.menu-item:hover a {
  color: var(--primary);
}

.active-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--primary);
  z-index: 10;
}

.nav-contact {
  width: 20%;
  display: flex;
}

.nav-contact a {
  font-size: 1.5rem;
  color: #3e444a;
  font-weight: 500;
  transition: var(--transition);
}

.nav-contact a:hover {
  color: var(--primary);
}

.has-dropdown {
  position: relative;
}

.has-dropdown i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background-color: #2F2F2F;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
  text-align: left;
}

.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  display: block;
  padding: 1.2rem 2rem;
  color: #bbb;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submenu a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.02);
}

.submenu a i {
  color: #999;
  transition: color 0.3s ease;
}

/* Third Level Submenu */
.has-sub-dropdown {
  position: relative;
}

.sub-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  background-color: #2F2F2F;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
  text-align: left;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.has-sub-dropdown:hover .sub-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.has-sub-dropdown > a {
  position: relative;
}

.has-sub-dropdown > a::before {
  content: '──  ';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.has-sub-dropdown:hover > a {
  padding-left: 4.5rem;
  color: #fff;
}

.has-sub-dropdown:hover > a::before {
  opacity: 1;
  left: 2rem;
}

.has-sub-dropdown:hover > a i {
  color: #0083B0;
}

.sub-submenu li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sub-submenu li:last-child {
  border-bottom: none;
}


@media (max-width: 991px) {
  .logo-area {
    padding: 1rem 0;
  }
  .main-logo img {
    height: 6rem;
  }
  
  /* Mobile Toggle Button */
  .mobile-menu-toggle {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #1a1a1a;
    z-index: 999;
    padding: 0;
  }
  .mobile-menu-toggle:focus {
    outline: none;
  }

  /* Hamburger Menu Layout */
  .nav-contact {
    display: none;
  }
  
  .main-nav {
    position: relative;
    background: transparent;
  }
  
  .menu-content {
    display: none;
    width: 100%;
    background: #0d2a3f;
    padding: 0;
  }
  
  .menu-content.active {
    display: block;
  }
  
  .main-nav .container {
    padding: 0;
  }
  
  .nav-wrapper {
    flex-direction: column;
    padding: 0;
    height: auto;
  }
  
  .menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .menu-item {
    width: 100%;
    position: static; /* Prevent overlap issues */
  }
  
  .menu-item > a {
    display: block;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
    color: #fff;
  }
  
  /* Dropdown & Sub-submenu Resets */
  .has-dropdown > a::before, 
  .has-sub-dropdown > a::before {
    display: none; /* Hide hover lines */
  }
  
  .submenu, .sub-submenu {
    position: static;
    display: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0.1);
    border: none;
  }
  
  .submenu.active, .sub-submenu.active {
    display: block;
  }
  
  .submenu li, .sub-submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  
  .submenu a {
    padding: 1rem 2rem 1rem 3rem;
  }
  
  .sub-submenu a {
    padding: 1rem 2rem 1rem 4rem;
  }
  
  /* Reset Hover FX for touch */
  .menu-item:hover > .submenu,
  .has-sub-dropdown:hover > .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
    /* On mobile, we use the .active class toggled via JS, not hover */
  }
  
  .menu-item:hover > .submenu:not(.active),
  .has-sub-dropdown:hover > .sub-submenu:not(.active) {
    display: none;
  }
  
  .active-indicator {
    display: none;
  }
}

/* Slider Styles */
.home-slider {
  width: 100%;
  height: calc(100vh - 15rem); /* Adjust based on header height */
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.main-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.partners-slider .swiper-slide::after {
    background: none;
}
.container-slider {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 8rem;
  height: 100%;
  position: relative;
  z-index: 2;
}

.slider-content {
  text-align: right;
  color: #fff;
  max-width: 800px;
}

.slider-logo {
  width: 25rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.slider-title {
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.02em;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(0,0,0,0.3);
  width: 5.5rem !important;
  height: 5.5rem !important;
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.8rem !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  opacity: 1;
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}

@media (max-width: 991px) {
  .home-slider {
    height: 60vh;
    min-height: 400px;
  }
  .slider-title {
    font-size: 3.5rem;
  }
  .slider-logo {
    width: 18rem;
  }
  .container-slider {
    padding-bottom: 4rem;
    justify-content: center;
  }
  .slider-content {
    text-align: center;
  }
}

/* Home Categories */
.home-categories {
  padding: 0;
  margin-top: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-title-part {
  transition: opacity 0.3s ease;
}

.category-card:hover .category-title-part {
  opacity: 0.9;
}

.category-img-part {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-title-part {
  width: 100%;
  padding: 2.2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.category-title-part h3 {
  color: #fff;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.container-categories {
    max-width: 1300px;
}

@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-img-part {
    height: 350px;
  }
}

/* Home Features Section */
.home-features {
  background-color: #f2f2f2;
  padding: 8rem 0;
}

.container-features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1300px;
}

.features-left {
  width: 30%;
}

.features-left h2 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
}

.btn-primary {
  display: inline-block;
  background-color: #0070B6;
  color: #fff;
  padding: 1.5rem 3.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #005082;
  color: #fff;
}

.features-right {
  width: 65%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5rem;
  row-gap: 4rem;
}

.feature-item > span::before {
    font-size: 4rem;
}

.feature-item img {
  width: 4.5rem;
  margin-bottom: 2rem;
}

.feature-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.feature-item p {
  font-size: 1.35rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 991px) {
  .container-features {
    flex-direction: column;
  }
  .features-left, .features-right {
    width: 100%;
  }
  .features-right {
    grid-template-columns: 1fr;
  }
  .features-left h2 {
    margin-bottom: 3rem;
  }
}

/* Home Tabs Section */
.home-tabs-section {
  position: relative;
  width: 100%;
  padding: 8rem 0;
  background: linear-gradient(90deg, #9C5F31 0%, #1e4560 45%, #1a2a3a 100%);
  color: #fff;
  overflow: hidden;
}

.container-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
  max-width: 1300px;
}

.tabs-left {
  width: 50%;
}

.tabs-logo {
  width: 40rem;
  margin-bottom: 6rem;
  display: block;
}

.tabs-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.01em;
}

.tabs-right {
  width: 50%;
}

.tab-nav {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
  /* justify-content: center; */
}

.tab-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.tab-btn:hover {
  opacity: 1;
}

.tab-btn.active {
  opacity: 1;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.tab-content-container {
  min-height: 250px;
}

.tab-pane {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tab-pane.active {
  opacity: 1;
}

.tab-pane h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tab-pane p {
  font-size: 1.35rem;
  line-height: 1.9;
  font-weight: 300;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .container-tabs {
    flex-direction: column;
    gap: 4rem;
  }
  .tabs-left, .tabs-right {
    width: 100%;
  }
  .tab-nav {
    gap: 2rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
  }
  .tabs-logo {
    width: 25rem;
  }
  .tabs-left h2 {
    font-size: 2.2rem;
  }
}

/* Home Partners Section */
.home-partners-section {
  padding: 5rem 0;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
}

.container-partners {
  max-width: 1400px;
  overflow: hidden;
}

.partners-slider {
  width: 100%;
}

.partners-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12rem;
}

.partners-slider img {
  max-width: 80%;
  max-height: 8rem;
  object-fit: contain;
}

/* Home Catalog Section */
.home-catalog-section {
  position: relative;
  width: 100%;
  padding: 12rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

.catalog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 60, 90, 0.4);
  z-index: 1;
}

.container-catalog {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-catalog-section h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.home-catalog-section p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4rem;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-catalog {
  display: inline-block;
  background-color: #0070B6;
  color: #fff;
  padding: 1.6rem 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-catalog:hover {
  background-color: #005082;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
  .home-catalog-section {
    padding: 8rem 0;
  }
  .home-catalog-section h2 {
    font-size: 2.8rem;
  }
  .home-catalog-section p {
    font-size: 1.4rem;
  }
}

/* Site Footer */
.site-footer {
  position: relative;
  background-color: #161616;
  color: #fff;
  padding: 8rem 0 4rem;
  border-top: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.footer-line-top {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.footer-content-container {
  position: relative;
  z-index: 1;
}

.footer-logo {
    align-items: center;
    display: flex;
    justify-content: center;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 5rem;
}

.footer-nav {
  margin-bottom: 4rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-nav li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.active-caret {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #fff;
}

.footer-address {
  margin-bottom: 3.5rem;
}

.footer-address p {
  color: #999;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #fff;
  color: #161616;
}

.footer-socials i {
  font-size: 1.3rem;
}

.footer-copyright p {
  color: #555;
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-nav ul {
    gap: 1.5rem;
    flex-direction: column;
  }
  .active-caret {
    display: none;
  }
}

/* About Page Banner */
.about-banner {
  height: 140px;
  background: linear-gradient(135deg, #22516f 0%, #0d2a3f 100%);
  position: relative;
  overflow: hidden;
  /* margin-top: 15rem; */ /* Make room for header */
}

.about-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 40%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 2px,
    transparent 25px
  );
  transform: skewX(-20deg);
}

.about-content-section {
  background-color: #fff;
}

.about-fence-img {
  max-width: 100%;
  height: auto;
  transform: scale(1.05); /* Slight enlarge for visual effect */
}

.about-subtitle {
  color: #888;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 2.9rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 0.5px;
}

.about-desc p {
  color: #555;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .about-banner {
    height: 90px;
  }
  .about-content-section {
    padding: 6rem 0 !important;
  }
  .about-title {
    font-size: 2.2rem;
    margin-top: 3rem;
  }
  .about-subtitle {
    font-size: 1rem;
  }
}

/* Philosophy Section */
.philosophy-section {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  background: linear-gradient(135deg, #a55a29 0%, #3e5264 45%, #0d2a3f 100%);
  color: #fff;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 40%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 2px,
    transparent 25px
  );
  transform: skewX(-20deg);
  z-index: 0;
}

.philosophy-section .container {
  position: relative;
  z-index: 1;
}

.philo-subtitle {
  color: #d1d9e0;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.philo-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 0.5px;
}

.philo-block h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #fff;
}

.philo-block p {
  color: #e2e8ec;
  font-size: 1.4rem;
  line-height: 1.9;
  font-weight: 300;
}

.philo-block p strong {
  font-weight: 700;
  color: #fff;
}

.philo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.philo-list li {
  color: #e2e8ec;
  font-size: 1.4rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.philo-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.9;
}

.philo-list li strong {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 991px) {
  .philosophy-section {
    padding: 6rem 0;
  }
  .philo-title {
    font-size: 2.6rem;
  }
}

/* Contact Section Styles */
.contact-section {
  position: relative;
  z-index: 10;
}

.contact-form-wrapper {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.contact-title {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 2.5rem;
}

.custom-form .form-group {
  margin-bottom: 2rem;
}

.form-control-line {
  width: 100%;
  padding: 1rem 0.5rem;
  font-size: 1.4rem;
  color: #555;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.form-control-line:focus {
  outline: none;
  border-bottom: 1px solid #16496b;
}

.form-control-line::placeholder {
  color: #888;
}

.btn-submit {
  padding: 0.5rem 2.5rem;
  font-size: 1.4rem;
  color: #555;
  border: 1px solid #ccc;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #16496b;
  color: #fff;
  border-color: #16496b;
}

.contact-info-box {
  background-color: #164a6d;
  color: #fff;
  padding: 4.5rem 3.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: calc(100% + 80px); /* Add height to compensate for negative margin */
  margin-top: -40px;
  position: relative;
  z-index: 15;
  width: 85%;
}

.info-subtitle {
  color: #d1d9e0;
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.info-title {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.info-desc {
  font-size: 1.5rem;
  font-weight: 300;
  color: #e2e8ec;
  line-height: 1.8;
}

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-methods li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-methods i {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 0.2rem;
}

.method-text strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.method-text span {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: #d1d9e0;
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background-color: #fff;
  color: #164a6d;
}

@media (max-width: 991px) {
  .contact-section {
    /* Resetting anything if needed */
  }
  .contact-form-wrapper {
    padding-top: 3rem;
  }
  .contact-info-box {
    padding: 3rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    height: auto;
    width: 100%;
  }
  .contact-title {
    font-size: 2.5rem;
  }
}

/* Home Categories Section */
.home-categories {
  padding: 5rem 0;
  background-color: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.category-card {
  display: block;
  position: relative;
  text-decoration: none;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-img-wrapper {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.category-img-part {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img-part {
  transform: scale(1.05);
}

/* Hover Overlay & Plus Icon */
.category-img-part::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-img-part::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.category-card:hover .category-img-part::before {
  opacity: 1;
}

.category-card:hover .category-img-part::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.category-title-part {
  padding: 1.8rem 1rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.category-title-part h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .category-img-wrapper {
    height: 350px;
  }
}



