/* ==========================================================================
   TROPIC FENCING - PREMIUM HERO PAGE STYLESHEET
   ========================================================================== */

/* ---------- CSS Reset & Base Variables ---------- */
:root {
  /* Brand Colors */
  --color-gold-primary: #d9a86c;
  --color-gold-light: #f2c792;
  --color-gold-dark: #b88547;
  --color-gold-gradient: linear-gradient(135deg, #f5cb98 0%, #d9a86c 50%, #b88547 100%);
  
  --color-teal-dark: #081d1e;
  --color-teal-card: #0c2527;
  --color-teal-accent: #113437;
  --color-teal-light: #1b494d;
  
  --color-header-bg: #ffffff;
  --color-nav-text: #1a2c2d;
  --color-nav-hover: #b88547;
  
  --color-white: #ffffff;
  --color-text-muted: #e2e8f0;
  --color-text-dim: #94a3b8;
  
  /* Typography */
  --font-heading: 'Oswald', 'Montserrat', sans-serif;
  --font-sans: 'Montserrat', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows & Glass */
  --glass-bg: rgba(12, 37, 39, 0.75);
  --glass-border: rgba(217, 168, 108, 0.25);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-gold-glow: 0 0 25px rgba(217, 168, 108, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-teal-dark);
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-header-bg);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  padding: 2px 0;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-nav-text);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Services Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 580px;
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 20px 45px rgba(8, 29, 30, 0.18);
  border: 1px solid rgba(217, 168, 108, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 1100;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 0.6rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--color-nav-text);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown-item i {
  font-size: 1.15rem;
  color: var(--color-gold-primary);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.dropdown-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  line-height: 1.2;
}

.dropdown-item span {
  display: block;
  font-size: 0.76rem;
  color: var(--color-text-dim);
  margin-top: 0.15rem;
}

.dropdown-item:hover {
  background: rgba(217, 168, 108, 0.12);
  transform: translateX(3px);
}

.dropdown-item:hover i {
  transform: scale(1.15);
  color: var(--color-gold-dark);
}

.dropdown-item:hover strong {
  color: var(--color-gold-dark);
}

/* Right Phone Action Button */
.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0d2729;
  color: var(--color-white);
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(13, 39, 41, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.phone-btn:hover {
  background: #143d40;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 39, 41, 0.35);
  color: var(--color-gold-primary);
}

.phone-btn:hover .phone-icon-wrap {
  transform: rotate(15deg) scale(1.15);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-teal-dark);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 0.65rem 1.25rem;
  }

  .brand-logo {
    height: 44px;
  }

  .phone-btn {
    padding: 0.52rem 1.15rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: right var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-logo {
  height: 40px;
}

.drawer-close-btn {
  font-size: 2.2rem;
  color: var(--color-teal-dark);
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-nav-link,
.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-nav-text);
  border-radius: 8px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(217, 168, 108, 0.12);
  color: var(--color-gold-dark);
}

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  padding-left: 1.5rem;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.mobile-sub-menu.open {
  display: flex;
}

.mobile-sub-menu a {
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
  color: #4a5568;
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-phone-btn {
  width: 100%;
  justify-content: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}


/* ==========================================================================
   HERO MAIN SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px - 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

/* Background Container & Dark Vignette Overlay */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.05);
}

/* Top Badge */
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: 1.5px solid rgba(217, 168, 108, 0.6);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-top-badge i {
  color: var(--color-gold-primary);
  font-size: 0.95rem;
}

/* Gradient Overlay - Clean Pure Neutral Black Vignette */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(0, 0, 0, 0.88) 0%, 
    rgba(0, 0, 0, 0.70) 32%, 
    rgba(0, 0, 0, 0.38) 55%, 
    rgba(0, 0, 0, 0.08) 80%,
    transparent 100%
  );
}

.hero-ambient-glow {
  display: none;
}

/* Content Layout */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  max-width: 640px;
}

/* Top Badge */
.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: 1.5px solid rgba(217, 168, 108, 0.6);
  background: rgba(8, 29, 30, 0.65);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-top-badge i {
  color: var(--color-gold-primary);
  font-size: 0.95rem;
}

/* Headline */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.title-row {
  display: block;
}

.word-strong, .word-fences, .word-built, .word-last {
  display: inline;
}

.white-text {
  color: var(--color-white);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.gold-text {
  color: var(--color-gold-primary);
  background-image: linear-gradient(180deg, #fce0b6 0%, #d9a86c 50%, #b88547 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.4));
}

/* Subtitle */
.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: #e5e7eb;
  font-weight: 400;
  margin-bottom: 2.2rem;
  max-width: 520px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Button Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.95rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Button 1: OUR SERVICES */
.btn-services {
  background: var(--color-gold-gradient);
  color: #081d1e;
  border: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(217, 168, 108, 0.35);
}

.btn-arrow-wrap {
  display: inline-flex;
  align-items: center;
  color: #081d1e;
  transition: transform var(--transition-fast);
}

.btn-services:hover {
  background: linear-gradient(135deg, #f7d4a8 0%, #e2b47b 50%, #c49151 100%);
  color: #081d1e;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 168, 108, 0.5);
}

.btn-services:hover .btn-arrow-wrap {
  transform: translateX(5px);
}

/* Button 2: GET A FREE QUOTE */
.btn-quote {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: transform var(--transition-fast);
}

.btn-quote:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-light);
  color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 168, 108, 0.4);
}

.btn-quote:hover .btn-icon-wrap {
  color: var(--color-teal-dark);
  transform: scale(1.15);
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: var(--color-teal-dark);
  font-weight: 800;
  border: none;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-2px);
}

.w-100 { width: 100%; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1.5rem; }

/* Trust Badges Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.92rem;
  color: #f1f5f9;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mobile-br {
  display: none;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform var(--transition-fast);
}

.trust-badge:hover {
  transform: translateY(-1px);
}

.trust-icon {
  color: var(--color-white);
  font-size: 1.05rem;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  user-select: none;
}

/* ==========================================================================
   HERO MOBILE RESPONSIVE LAYOUT (MATCHING MOBILE SCREENSHOT 1:1)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2.8rem 0 1.5rem;
  }

  .hero-container {
    padding: 0 1.25rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-bg-img {
    object-position: 74% center;
    transform: scale(1.08);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg, 
      rgba(0, 0, 0, 0.85) 0%, 
      rgba(0, 0, 0, 0.55) 40%, 
      rgba(0, 0, 0, 0.30) 70%, 
      rgba(0, 0, 0, 0.88) 100%
    ),
    linear-gradient(
      90deg, 
      rgba(0, 0, 0, 0.86) 0%, 
      rgba(0, 0, 0, 0.45) 55%, 
      rgba(0, 0, 0, 0.15) 85%,
      transparent 100%
    );
  }

  .hero-top-badge {
    padding: 0.42rem 0.9rem;
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    border: 1.5px solid #d4a359;
    background: rgba(14, 25, 26, 0.7);
    backdrop-filter: blur(8px);
    color: #d4a359;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .hero-top-badge i {
    color: #d4a359;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: clamp(3.4rem, 14.5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
  }

  .word-strong,
  .word-fences,
  .word-built,
  .word-last {
    display: block;
  }

  .white-text {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }

  .gold-text {
    color: #cca05b;
    background-image: linear-gradient(180deg, #e6bc7e 0%, #cca05b 50%, #b5853e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.7));
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.55;
    color: #ffffff;
    margin-bottom: 1.8rem;
    max-width: 360px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2.2rem;
  }

  .btn-services {
    background: #cb9c52;
    background: linear-gradient(135deg, #d8ab64 0%, #cb9c52 50%, #b8863b 100%);
    color: #141b1c;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 0.9rem 0.5rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 6px 18px rgba(203, 156, 82, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-services .btn-arrow-wrap {
    color: #141b1c;
    font-size: 0.95rem;
  }

  .btn-quote {
    background: rgba(14, 25, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 0.9rem 0.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-quote .btn-icon-wrap {
    color: #ffffff;
    font-size: 0.95rem;
  }

  .hero-trust-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    border-top: none;
    gap: 0.2rem;
  }

  .mobile-br {
    display: block;
  }

  .trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.38rem;
    flex: 1 1 0;
    min-width: 0;
  }

  .trust-text {
    font-size: 0.62rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .trust-icon {
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
  }

  .trust-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 300;
    user-select: none;
    flex-shrink: 0;
    padding: 0 0.1rem;
  }
}


/* ==========================================================================
   BOTTOM FEATURES BAR
   ========================================================================== */
.features-bar {
  background: #081d1e;
  border-top: 1px solid rgba(217, 168, 108, 0.2);
  position: relative;
  z-index: 20;
  padding: 1.6rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.features-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  padding: 0.4rem 0.5rem;
  transition: all var(--transition-normal);
}

/* Vertical separator line between feature cards */
.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.feature-gold-svg {
  width: 48px;
  height: 48px;
  color: var(--color-gold-primary);
  filter: drop-shadow(0 2px 8px rgba(217, 168, 108, 0.3));
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-gold-svg {
  transform: scale(1.12);
  filter: drop-shadow(0 0 12px rgba(217, 168, 108, 0.6));
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #cbd5e1;
  font-weight: 500;
}

.feature-highlight {
  color: #ffffff;
  font-weight: 700;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card:hover .feature-title {
  color: var(--color-gold-primary);
}

/* ==========================================================================
   BOTTOM FEATURES BAR MOBILE RESPONSIVE (3 ON TOP / 2 ON BOTTOM)
   ========================================================================== */
@media (max-width: 768px) {
  .features-bar {
    background: #0c2426;
    border-top: none;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 2.4rem 0.5rem 2.8rem;
    margin-top: 1.5rem;
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 20;
  }

  .features-container {
    padding: 0 0.6rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    row-gap: 1.8rem;
  }

  /* Row 1: 3 cards (each span 2 columns) */
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    grid-column: span 2;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Row 2: 2 cards (each span 3 columns) */
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 3;
    padding-top: 0.4rem;
  }

  /* Reset default desktop pseudo dividers */
  .feature-card:not(:last-child)::after {
    display: none;
  }

  /* Mobile specific vertical dividers */
  .feature-card:nth-child(1),
  .feature-card:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-card:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    padding: 0.3rem 0.4rem;
    gap: 0.7rem;
  }

  .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 0.1rem;
  }

  .feature-gold-svg {
    width: 44px;
    height: 44px;
    color: #cca05b;
    filter: drop-shadow(0 2px 8px rgba(204, 160, 91, 0.25));
  }

  .feature-content {
    align-items: center;
    text-align: center;
  }

  .feature-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    color: #ffffff;
  }

  .feature-text {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #b0c2c2;
    font-weight: 500;
  }

  .feature-highlight {
    color: #ffffff;
    font-weight: 700;
  }
}


/* ==========================================================================
   MODAL: FREE QUOTE ESTIMATOR
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 17, 18, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0e2729;
  border: 1px solid rgba(217, 168, 108, 0.35);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-smooth);
  color: var(--color-white);
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.8rem;
  color: var(--color-text-dim);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-gold-primary);
}

.modal-header {
  margin-bottom: 1.8rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217, 168, 108, 0.15);
  border: 1px solid rgba(217, 168, 108, 0.4);
  color: var(--color-gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-gold-light);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--color-gold-primary);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  background: #081d1e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.input-wrap textarea {
  padding-left: 1rem;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 12px rgba(217, 168, 108, 0.3);
}

.input-wrap select {
  cursor: pointer;
}

.input-wrap select option {
  background: #0e2729;
  color: #ffffff;
}

.submit-btn {
  width: 100%;
  background: var(--color-gold-gradient);
  color: #091e20;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.submit-btn:hover {
  box-shadow: 0 8px 25px rgba(217, 168, 108, 0.45);
  transform: translateY(-2px);
}

/* Success Message */
.form-success-message {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-message.show {
  display: block;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
  animation: popSuccess 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popSuccess {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}


/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  background: #f8fafc;
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left Image Column */
.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #091e20;
}

.about-main-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.04);
}

/* Floating Guarantee Badge */
.guarantee-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #0c2628;
  border: 1.5px solid rgba(217, 168, 108, 0.5);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(217, 168, 108, 0.2);
  backdrop-filter: blur(8px);
  z-index: 5;
  transition: all var(--transition-normal);
}

.guarantee-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), var(--shadow-gold-glow);
}

.guarantee-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

.guarantee-svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 6px rgba(217, 168, 108, 0.4));
}

.guarantee-text-box {
  display: flex;
  flex-direction: column;
}

.guarantee-percent {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.guarantee-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-white);
  line-height: 1.25;
  margin-top: 2px;
}

/* Right Content Column */
.about-content-col {
  padding-left: 0.5rem;
}

.section-tagline {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #081d1e;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.about-title .title-line {
  display: block;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  font-weight: 450;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* Checkpoints List */
.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform var(--transition-fast);
}

.checklist-item:hover {
  transform: translateX(4px);
}

.check-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #081d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(217, 168, 108, 0.4);
}

.checklist-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.01em;
}

/* About CTA Button */
.btn-about-cta {
  background: #0c2628;
  color: var(--color-white);
  padding: 0.95rem 1.9rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(12, 38, 40, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--transition-normal);
}

.btn-about-cta:hover {
  background: #143e42;
  color: var(--color-gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(12, 38, 40, 0.35);
}

.btn-about-cta:hover .btn-arrow-wrap {
  transform: translateX(5px);
}

/* Responsive adjustment for About Section */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-main-img {
    min-height: 380px;
    max-height: 440px;
  }
  
  .about-content-col {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .guarantee-badge {
    bottom: 15px;
    right: 15px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .guarantee-svg {
    width: 32px;
    height: 32px;
  }
  
  .guarantee-percent {
    font-size: 1.5rem;
  }
  
  .guarantee-label {
    font-size: 0.62rem;
  }
  
  .btn-about-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background: #ffffff;
  padding: 6.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #081d1e;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.title-accent-line {
  width: 50px;
  height: 3.5px;
  background: var(--color-gold-gradient);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(217, 168, 108, 0.4);
}

/* Services 5-Column Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

/* Service Card */
.service-card {
  background: #f4f5f6;
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-7px);
  border-color: rgba(217, 168, 108, 0.45);
  box-shadow: 0 16px 35px rgba(8, 29, 30, 0.12), 0 0 15px rgba(217, 168, 108, 0.2);
}

.service-img-wrap {
  width: 100%;
  height: 165px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #091e20;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-info {
  padding: 1.1rem 0.3rem 0.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #081d1e;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--color-gold-dark);
}

.service-desc {
  font-size: 0.83rem;
  line-height: 1.45;
  color: #556575;
  font-weight: 500;
}

/* Card 10: Special AND MORE Card */
.service-card-more {
  background: #0c2628;
  border: 1.5px solid rgba(217, 168, 108, 0.4);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 25px rgba(12, 38, 40, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-more:hover {
  background: #113437;
  transform: translateY(-7px);
  border-color: var(--color-gold-light);
  box-shadow: 0 18px 40px rgba(12, 38, 40, 0.45), var(--shadow-gold-glow);
}

.more-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.more-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.more-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.more-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
  transition: transform var(--transition-fast);
}

.service-card-more:hover .more-item {
  transform: translateX(3px);
}

.more-check {
  color: var(--color-gold-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Responsive grid for Services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .services-section {
    padding: 4.5rem 0;
  }
  
  .service-img-wrap {
    height: 140px;
  }
  
  .service-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-img-wrap {
    height: 180px;
  }
}


/* ==========================================================================
   ADDITIONAL SERVICES SECTION
   ========================================================================== */
.additional-services-section {
  background: #f8fafc;
  padding: 4.5rem 0 5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.additional-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.additional-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 35px rgba(8, 29, 30, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mb-4 {
  margin-bottom: 1.8rem;
}

.additional-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #081d1e;
  text-transform: uppercase;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.8rem;
}

.additional-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  padding: 1rem 0.8rem;
  border-radius: 12px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

/* Vertical separator line between additional items */
.additional-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.additional-icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.additional-svg {
  width: 44px;
  height: 44px;
  color: #081d1e;
  transition: all var(--transition-normal);
}

.additional-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.additional-title {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #081d1e;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.additional-item:hover {
  background: #f8fafc;
  transform: translateY(-3px);
}

.additional-item:hover .additional-svg {
  color: var(--color-gold-dark);
  transform: scale(1.12);
  filter: drop-shadow(0 2px 8px rgba(217, 168, 108, 0.4));
}

.additional-item:hover .additional-title {
  color: var(--color-gold-dark);
}

/* Responsive queries for Additional Services */
@media (max-width: 1024px) {
  .additional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .additional-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .additional-card-wrapper {
    padding: 2rem 1.25rem;
  }
  
  .additional-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .additional-item:not(:last-child)::after {
    display: none;
  }
  
  .additional-item {
    justify-content: flex-start;
    padding: 0.85rem;
    background: #f8fafc;
  }
}


/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
  background: #ffffff;
  padding: 6.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-choose-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-normal);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 168, 108, 0.55);
  box-shadow: 0 16px 35px rgba(8, 29, 30, 0.08), 0 0 15px rgba(217, 168, 108, 0.15);
}

.why-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-normal);
}

.why-gold-svg {
  width: 48px;
  height: 48px;
  color: var(--color-gold-primary);
  filter: drop-shadow(0 2px 6px rgba(217, 168, 108, 0.3));
  transition: all var(--transition-normal);
}

.why-card:hover .why-gold-svg {
  transform: scale(1.12);
  filter: drop-shadow(0 0 12px rgba(217, 168, 108, 0.5));
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #081d1e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.why-card:hover .why-card-title {
  color: var(--color-gold-dark);
}

.why-card-desc {
  font-size: 0.83rem;
  line-height: 1.5;
  color: #556575;
  font-weight: 500;
}

/* Responsive grid for Why Choose Us */
@media (max-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .why-choose-section {
    padding: 4.5rem 0;
  }
  
  .why-card {
    padding: 1.6rem 1rem;
  }
  
  .why-card-title {
    font-size: 1rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   RECENT PROJECTS SECTION
   ========================================================================== */
.projects-section {
  background: #081d1e;
  padding: 5.5rem 0 6rem;
  position: relative;
  border-bottom: 1px solid rgba(217, 168, 108, 0.2);
}

.projects-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.projects-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.projects-subtitle {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.projects-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.btn-projects-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-normal);
}

.btn-projects-outline:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  background: rgba(217, 168, 108, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 168, 108, 0.25);
}

.btn-projects-outline:hover .btn-arrow-wrap {
  transform: translateX(4px);
}

/* 6-Column Gallery Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0c2628;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold-primary);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 168, 108, 0.25);
}

.project-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #061517;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 29, 30, 0.1) 0%, rgba(8, 29, 30, 0.75) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #081d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: scale(0.6);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.project-card:hover .project-zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 17, 18, 0.92);
  backdrop-filter: blur(10px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 1.5px solid rgba(217, 168, 108, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold-primary);
}

/* Responsive grid for Projects */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .projects-section {
    padding: 4rem 0;
  }
  
  .projects-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-projects-outline {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   CUSTOMER REVIEWS / TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  background: #fbfcfd;
  padding: 6.5rem 0 6rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-subtitle {
  color: var(--color-gold-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2.2rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(8, 29, 30, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 168, 108, 0.5);
  box-shadow: 0 18px 40px rgba(8, 29, 30, 0.08), 0 0 15px rgba(217, 168, 108, 0.15);
}

.review-top-badge {
  margin-bottom: 1.6rem;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-rating {
  color: #d9a86c;
  font-size: 1.15rem;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(217, 168, 108, 0.3));
}

.quote-mark-icon {
  color: #d9a86c;
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(217, 168, 108, 0.3));
}

.review-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 500;
  margin-bottom: 2rem;
  flex-grow: 1;
  max-width: 360px;
}

.review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #081d1e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Pagination Dots */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.dot.active {
  width: 10px;
  height: 10px;
  background: #081d1e;
}

.dot:hover {
  background: var(--color-gold-primary);
  transform: scale(1.2);
}

/* Responsive queries for Reviews */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 4.5rem 0;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .review-card {
    padding: 2.2rem 1.5rem;
  }
}


/* ==========================================================================
   CONTACT / GET A FREE QUOTE SECTION
   ========================================================================== */
.contact-section {
  background: #081d1e;
  padding: 5.5rem 0 6rem;
  position: relative;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

/* Left: White Info Card */
.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-info-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.contact-info-content {
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 700;
  color: #081d1e;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #081d1e;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--transition-fast);
}

.contact-item:hover {
  color: var(--color-gold-dark);
}

.contact-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #081d1e;
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.contact-item:hover .contact-icon-badge {
  transform: scale(1.08);
  background: #0e2a2c;
}

.contact-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #061718;
}

.contact-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.contact-info-card:hover .contact-side-img {
  transform: scale(1.05);
}

/* Right: Form Card */
.contact-form-card {
  background: #081d1e;
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.form-gold-line {
  width: 44px;
  height: 3px;
  background: var(--color-gold-gradient);
  border-radius: 2px;
}

.form-row-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
  position: relative;
}

.contact-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: #081d1e;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-input:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px rgba(217, 168, 108, 0.25);
}

.contact-select {
  appearance: none;
  cursor: pointer;
  color: #334155;
}

.select-wrapper .select-arrow {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  font-size: 0.85rem;
}

.contact-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-contact-submit {
  width: 100%;
  background: var(--color-gold-gradient);
  color: #081d1e;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 6px 20px rgba(217, 168, 108, 0.35);
  transition: all var(--transition-normal);
  margin-top: 0.4rem;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 168, 108, 0.5);
  filter: brightness(1.05);
}

.btn-contact-submit:hover .btn-arrow-wrap {
  transform: translateX(4px);
}

/* Responsive Queries for Contact Section */
@media (max-width: 1100px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .contact-info-card {
    grid-template-columns: 1fr;
  }
  
  .contact-image-wrapper {
    min-height: 220px;
  }
  
  .contact-info-content {
    padding: 2.2rem 1.5rem;
  }
  
  .contact-form-card {
    padding: 2.2rem 1.5rem;
  }
  
  .form-row-two-col {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #041213;
  color: #cbd5e1;
  position: relative;
  padding-top: 5.5rem;
}

.footer-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(217, 168, 108, 0.6), transparent);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.4rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 1.8rem;
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0c2628;
  border: 1px solid rgba(217, 168, 108, 0.25);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background: var(--color-gold-gradient);
  color: #081d1e;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(217, 168, 108, 0.35);
  border-color: transparent;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-heading-line {
  width: 36px;
  height: 2.5px;
  background: var(--color-gold-gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.footer-link i {
  font-size: 0.7rem;
  color: var(--color-gold-primary);
  opacity: 0.7;
  transition: transform var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #0c2628;
  border: 1px solid rgba(217, 168, 108, 0.25);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.contact-val {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-val:hover {
  color: var(--color-gold-light);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.88rem;
  color: #64748b;
}

.brand-highlight {
  color: var(--color-gold-light);
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal-link {
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: #cbd5e1;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0c2628;
  border: 1px solid rgba(217, 168, 108, 0.3);
  color: var(--color-gold-light);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.back-to-top-btn:hover {
  background: var(--color-gold-gradient);
  color: #081d1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 168, 108, 0.3);
  border-color: transparent;
}

/* Responsive queries for Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}









.animate-on-load {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll-right.in-view {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (GENERAL / MODAL / UTILITIES)
   ========================================================================== */

/* Tablets / Medium Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Small Mobile Form & Modal Adjustments (max-width: 640px) */
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .modal-card {
    padding: 1.5rem;
  }
}
