/* ============================================================
   WASHINGTON ROOFING & CONSTRUCTION — MASTER STYLESHEET
   Premium Cinematic Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* ---- Brand Colors ---- */
  --deep-forest:    #1F5B2E;
  --dark-green:     #0E2416;
  --almost-black:   #080C0A;
  --white:          #FFFFFF;
  --warm-cream:     #F6EBCB;
  --roof-red:       #C62816;
  --sunset-orange:  #F47A1F;
  --gold-accent:    #F4C542;
  --dark-gray:      #1B1F1D;

  /* ---- Semantic Aliases ---- */
  --bg-primary:     var(--almost-black);
  --bg-card:        rgba(14, 36, 22, 0.45);
  --bg-glass:       rgba(14, 36, 22, 0.35);
  --text-primary:   var(--warm-cream);
  --text-heading:   var(--white);
  --accent:         var(--sunset-orange);
  --accent-hover:   #ff8c38;
  --border-subtle:  rgba(31, 91, 46, 0.3);

  /* ---- Typography ---- */
  --ff-main:        'Outfit', sans-serif;
  --fs-xs:          0.75rem;
  --fs-sm:          0.875rem;
  --fs-base:        1rem;
  --fs-md:          1.125rem;
  --fs-lg:          1.25rem;
  --fs-xl:          1.5rem;
  --fs-2xl:         2rem;
  --fs-3xl:         2.5rem;
  --fs-4xl:         3rem;
  --fs-hero:        clamp(2.5rem, 5vw + 1rem, 4rem);
  --fw-light:       300;
  --fw-regular:     400;
  --fw-medium:      500;
  --fw-semi:        600;
  --fw-bold:        700;
  --fw-extra:       800;
  --fw-black:       900;
  --lh-tight:       1.15;
  --lh-snug:        1.3;
  --lh-normal:      1.6;
  --lh-relaxed:     1.8;

  /* ---- Spacing ---- */
  --sp-xs:          0.25rem;
  --sp-sm:          0.5rem;
  --sp-md:          1rem;
  --sp-lg:          1.5rem;
  --sp-xl:          2rem;
  --sp-2xl:         3rem;
  --sp-3xl:         4rem;
  --sp-4xl:         6rem;
  --sp-section:     100px;
  --container-max:  1200px;
  --container-pad:  clamp(1rem, 4vw, 2rem);

  /* ---- Borders & Radius ---- */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    9999px;

  /* ---- Transitions ---- */
  --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --tr-fast:        0.2s var(--ease-smooth);
  --tr-base:        0.35s var(--ease-smooth);
  --tr-slow:        0.5s var(--ease-smooth);
  --tr-slower:      0.7s var(--ease-out);

  /* ---- Shadows ---- */
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md:      0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg:      0 8px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow-o:  0 0 25px rgba(244, 122, 31, 0.3);
  --shadow-glow-g:  0 0 25px rgba(31, 91, 46, 0.35);

  /* ---- Z-Indexes ---- */
  --z-behind:       -1;
  --z-base:         1;
  --z-overlay:      10;
  --z-nav:          1000;
  --z-lightbox:     9999;
}


/* ============================================================
   2. CSS RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--ff-main);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}


/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-padding {
  padding-block: var(--sp-section);
}

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

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

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

.text-accent {
  color: var(--accent);
}

.text-gold {
  color: var(--gold-accent);
}

.text-cream {
  color: var(--warm-cream);
}

.text-white {
  color: var(--white);
}

.fw-light   { font-weight: var(--fw-light); }
.fw-medium  { font-weight: var(--fw-medium); }
.fw-semi    { font-weight: var(--fw-semi); }
.fw-bold    { font-weight: var(--fw-bold); }
.fw-extra   { font-weight: var(--fw-extra); }
.fw-black   { font-weight: var(--fw-black); }

.mx-auto    { margin-inline: auto; }
.mt-1       { margin-top: var(--sp-md); }
.mt-2       { margin-top: var(--sp-xl); }
.mt-3       { margin-top: var(--sp-3xl); }
.mb-1       { margin-top: var(--sp-md); }
.mb-2       { margin-bottom: var(--sp-xl); }
.mb-3       { margin-bottom: var(--sp-3xl); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   4. SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: var(--sp-xl);
}

.section-header h2,
.section-title {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  font-weight: var(--fw-extra);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-md);
}

.section-header h2::after,
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--gold-accent));
  margin-top: 14px;
  border-radius: var(--radius-full);
}

.text-center .section-title::after,
.section-header.text-center h2::after {
  margin-inline: auto;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--warm-cream);
  opacity: 0.75;
  font-weight: var(--fw-light);
  max-width: 640px;
  line-height: var(--lh-relaxed);
}

.text-center .section-subtitle {
  margin-inline: auto;
}


/* ============================================================
   5. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-up.revealed,
.fade-in-left.revealed,
.fade-in-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.8s; }


/* ============================================================
   6. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(244, 122, 31, 0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(244, 122, 31, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes blueprintScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

@keyframes particleDrift {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* ============================================================
   7. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: var(--z-nav);
  background: rgba(14, 36, 22, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(31, 91, 46, 0.15);
  transition: background var(--tr-base), box-shadow var(--tr-base), height var(--tr-base);
}

.navbar.nav-scrolled {
  background: rgba(8, 12, 10, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  height: 70px;
  border-bottom-color: rgba(31, 91, 46, 0.25);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  max-height: 55px;
  width: auto;
  transition: transform var(--tr-base);
}

.nav-logo img:hover {
  transform: scale(1.04);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-links a {
  position: relative;
  color: var(--warm-cream);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 0;
  transition: color var(--tr-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--gold-accent));
  border-radius: var(--radius-full);
  transition: width var(--tr-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sunset-orange);
}

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

/* Nav Phone Button */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--white);
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
  box-shadow: 0 4px 15px rgba(244, 122, 31, 0.3);
}

.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244, 122, 31, 0.45);
  background: linear-gradient(135deg, #ff8c38, var(--sunset-orange));
}

.nav-phone i,
.nav-phone svg {
  font-size: var(--fs-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 10);
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--warm-cream);
  border-radius: var(--radius-full);
  transition: transform var(--tr-base), opacity var(--tr-fast), background var(--tr-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--sunset-orange);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--sunset-orange);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(8, 12, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  z-index: var(--z-nav);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

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

.mobile-nav a {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-cream);
  padding: 10px 20px;
  transition: color var(--tr-fast), transform var(--tr-fast);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav a:hover {
  color: var(--sunset-orange);
  transform: translateX(6px);
}

.mobile-nav .nav-phone {
  margin-top: var(--sp-lg);
  font-size: var(--fs-md);
  padding: 14px 32px;
}


/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--almost-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* Cinematic dark overlay – multiple gradient layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(8, 12, 10, 0.6) 0%, rgba(8, 12, 10, 0.2) 100%),
    linear-gradient(180deg,
      rgba(8, 12, 10, 0.85) 0%,
      rgba(8, 12, 10, 0.65) 30%,
      rgba(8, 12, 10, 0.65) 50%,
      rgba(14, 36, 22, 0.75) 75%,
      var(--almost-black) 100%
    ),
    linear-gradient(135deg,
      rgba(14, 36, 22, 0.4) 0%,
      transparent 60%
    );
}

/* Blueprint grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(31, 91, 46, 0.6) 59px,
      rgba(31, 91, 46, 0.6) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(31, 91, 46, 0.6) 59px,
      rgba(31, 91, 46, 0.6) 60px
    );
  animation: blueprintScroll 12s linear infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 150px var(--container-pad) var(--sp-3xl);
  max-width: 900px;
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.hero-logo {
  max-width: 180px;
  margin: 0 auto var(--sp-xl);
  filter: drop-shadow(0 0 30px rgba(31, 91, 46, 0.5)) drop-shadow(0 0 60px rgba(31, 91, 46, 0.2));
  animation: float 5s ease-in-out infinite;
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-black);
  color: var(--warm-cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.7);
  margin-bottom: var(--sp-lg);
  line-height: var(--lh-tight);
}

.hero h1 .highlight {
  color: var(--sunset-orange);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.35rem);
  color: var(--warm-cream);
  opacity: 0.9;
  font-weight: var(--fw-light);
  max-width: 650px;
  margin: 0 auto var(--sp-2xl);
  line-height: var(--lh-relaxed);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(31, 91, 46, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 91, 46, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--warm-cream);
  transition: background var(--tr-fast), transform var(--tr-fast);
}

.trust-badge:hover {
  background: rgba(31, 91, 46, 0.35);
  transform: translateY(-2px);
}

.trust-badge i,
.trust-badge svg {
  color: var(--gold-accent);
  font-size: var(--fs-md);
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  transition: all var(--tr-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  box-shadow: 0 4px 20px rgba(244, 122, 31, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8c38, var(--sunset-orange));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 122, 31, 0.5);
  animation: none;
}

.btn-outline {
  color: var(--warm-cream);
  border: 2px solid rgba(246, 235, 203, 0.5);
  background: rgba(246, 235, 203, 0.05);
}

.btn-outline:hover {
  border-color: var(--warm-cream);
  background: rgba(246, 235, 203, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 235, 203, 0.1);
}

.btn-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--roof-red), #a82010);
  box-shadow: 0 4px 20px rgba(198, 40, 22, 0.3);
}

.btn-red:hover {
  background: linear-gradient(135deg, #d93020, var(--roof-red));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(198, 40, 22, 0.45);
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(31, 91, 46, 0.5);
  border-radius: 50%;
  animation: particleDrift linear infinite;
}

.particle:nth-child(1)  { left: 10%; bottom: 5%;  animation-duration: 8s;  animation-delay: 0s;   }
.particle:nth-child(2)  { left: 25%; bottom: 10%; animation-duration: 10s; animation-delay: 1s;   }
.particle:nth-child(3)  { left: 40%; bottom: 3%;  animation-duration: 7s;  animation-delay: 0.5s; }
.particle:nth-child(4)  { left: 55%; bottom: 8%;  animation-duration: 9s;  animation-delay: 2s;   }
.particle:nth-child(5)  { left: 70%; bottom: 12%; animation-duration: 11s; animation-delay: 1.5s; }
.particle:nth-child(6)  { left: 85%; bottom: 6%;  animation-duration: 8.5s;animation-delay: 3s;   }
.particle:nth-child(7)  { left: 15%; bottom: 15%; animation-duration: 12s; animation-delay: 0.8s; }
.particle:nth-child(8)  { left: 60%; bottom: 2%;  animation-duration: 9.5s;animation-delay: 2.5s; }
.particle:nth-child(9)  { left: 35%; bottom: 7%;  animation-duration: 10.5s;animation-delay: 1.2s;}
.particle:nth-child(10) { left: 80%; bottom: 9%;  animation-duration: 7.5s;animation-delay: 3.5s; }
.particle:nth-child(11) { left: 5%;  bottom: 4%;  animation-duration: 13s; animation-delay: 0.3s; }
.particle:nth-child(12) { left: 48%; bottom: 11%; animation-duration: 8s;  animation-delay: 4s;   }

.particle:nth-child(odd) {
  width: 3px;
  height: 3px;
  background: rgba(244, 197, 66, 0.3);
}

.particle:nth-child(3n) {
  width: 5px;
  height: 5px;
  background: rgba(244, 122, 31, 0.2);
}


/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--almost-black);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.about-text p {
  font-size: var(--fs-md);
  color: var(--warm-cream);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-lg);
  opacity: 0.88;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(31, 91, 46, 0.35);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

/* Mission & Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.value-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--deep-forest);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  transition: transform var(--tr-base), border-color var(--tr-base), box-shadow var(--tr-base);
}

.value-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--sunset-orange);
  box-shadow: var(--shadow-md);
}

.value-card h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-sm);
  color: var(--white);
}

.value-card p {
  font-size: var(--fs-sm);
  color: var(--warm-cream);
  opacity: 0.8;
  line-height: var(--lh-normal);
}


/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services {
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(31, 91, 46, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(244, 122, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services > .container {
  position: relative;
  z-index: 1;
}

.service-category {
  margin-bottom: var(--sp-4xl);
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.category-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: var(--fw-extra);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.category-header h3 .cat-icon {
  margin-right: 10px;
  color: var(--sunset-orange);
}

.category-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: var(--sp-3xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(31, 91, 46, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
  transition: transform var(--tr-base), border-color var(--tr-base), box-shadow var(--tr-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--gold-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 122, 31, 0.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(244, 122, 31, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 91, 46, 0.25);
  border: 1px solid rgba(31, 91, 46, 0.35);
  border-radius: 50%;
  font-size: var(--fs-xl);
  color: var(--warm-cream);
  transition: background var(--tr-base), transform var(--tr-base);
}

.service-card:hover .service-icon {
  background: rgba(31, 91, 46, 0.45);
  transform: scale(1.1);
}

.service-card h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--white);
  margin-bottom: var(--sp-sm);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--warm-cream);
  opacity: 0.75;
  line-height: var(--lh-normal);
}


/* ============================================================
   11. GALLERY SECTION
   ============================================================ */
.gallery {
  background: var(--almost-black);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--dark-gray);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(244, 122, 31, 0.55) 0%,
    rgba(244, 122, 31, 0.1) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg);
  color: var(--white);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--tr-base), opacity var(--tr-base);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}


/* ============================================================
   12. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  animation: scaleIn 0.4s var(--ease-out);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-xl);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}

.lightbox-close:hover {
  background: var(--sunset-orange);
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-xl);
  cursor: pointer;
  transition: background var(--tr-fast), transform var(--tr-fast);
}

.lightbox-nav:hover {
  background: rgba(244, 122, 31, 0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.lightbox-next {
  right: 20px;
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}


/* ============================================================
   13. CONTACT / FOOTER SECTION
   ============================================================ */
.contact {
  background:
    linear-gradient(180deg,
      var(--dark-gray) 0%,
      var(--dark-green) 30%,
      var(--almost-black) 100%
    );
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-2xl);
}

.contact-info h3,
.contact-form-wrapper h3,
.quick-links h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--sp-xl);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Contact Info */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.contact-detail i,
.contact-detail svg {
  color: var(--sunset-orange);
  font-size: var(--fs-lg);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail p {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--warm-cream);
  opacity: 0.85;
}

.contact-detail a {
  color: var(--warm-cream);
  transition: color var(--tr-fast);
}

.contact-detail a:hover {
  color: var(--sunset-orange);
}

/* Phone Link Buttons in Contact */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  color: var(--white);
  font-weight: var(--fw-semi);
  border-radius: var(--radius-full);
  font-size: var(--fs-base);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
  box-shadow: 0 4px 15px rgba(244, 122, 31, 0.3);
  margin-top: var(--sp-sm);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244, 122, 31, 0.45);
}

/* Map */
.map-container {
  margin-top: var(--sp-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(31, 91, 46, 0.3);
  aspect-ratio: 16 / 10;
  background: var(--dark-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) brightness(0.85);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(8, 12, 10, 0.7);
  border: 1px solid rgba(31, 91, 46, 0.3);
  border-radius: var(--radius-md);
  color: var(--warm-cream);
  font-size: var(--fs-base);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(246, 235, 203, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--deep-forest);
  box-shadow: 0 0 0 3px rgba(31, 91, 46, 0.2), 0 0 15px rgba(31, 91, 46, 0.1);
  background: rgba(8, 12, 10, 0.9);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F6EBCB' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--dark-gray);
  color: var(--warm-cream);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--warm-cream);
  margin-bottom: 6px;
  opacity: 0.8;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
  box-shadow: 0 4px 20px rgba(244, 122, 31, 0.3);
  border: none;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ff8c38, var(--sunset-orange));
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(244, 122, 31, 0.5);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Quick Links */
.quick-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-cream);
  opacity: 0.8;
  font-size: var(--fs-base);
  padding: 6px 0;
  transition: color var(--tr-fast), opacity var(--tr-fast), transform var(--tr-fast);
}

.quick-links a::before {
  content: '›';
  font-size: var(--fs-lg);
  color: var(--sunset-orange);
  transition: transform var(--tr-fast);
}

.quick-links a:hover {
  color: var(--sunset-orange);
  opacity: 1;
  transform: translateX(4px);
}

.quick-links a:hover::before {
  transform: translateX(3px);
}

/* Footer Bottom Bar */
.footer-bottom {
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(31, 91, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: var(--warm-cream);
  opacity: 0.55;
}

.footer-bottom a {
  color: var(--sunset-orange);
  font-weight: var(--fw-medium);
  transition: color var(--tr-fast), opacity var(--tr-fast);
}

.footer-bottom a:hover {
  color: var(--gold-accent);
  opacity: 1;
}


/* ============================================================
   14. SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--almost-black);
}

::-webkit-scrollbar-thumb {
  background: rgba(31, 91, 46, 0.5);
  border-radius: var(--radius-full);
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 91, 46, 0.75);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 91, 46, 0.5) var(--almost-black);
}


/* ============================================================
   15. SELECTION STYLING
   ============================================================ */
::selection {
  background: rgba(244, 122, 31, 0.65);
  color: var(--white);
}

::-moz-selection {
  background: rgba(244, 122, 31, 0.65);
  color: var(--white);
}


/* ============================================================
   16. MISC COMPONENTS
   ============================================================ */

/* Shimmer accent for premium elements */
.shimmer {
  background: linear-gradient(
    90deg,
    var(--warm-cream) 0%,
    var(--gold-accent) 25%,
    var(--warm-cream) 50%,
    var(--gold-accent) 75%,
    var(--warm-cream) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  color: var(--white);
  border-radius: 50%;
  font-size: var(--fs-lg);
  box-shadow: 0 4px 20px rgba(244, 122, 31, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr-base), visibility var(--tr-base), transform var(--tr-base), background var(--tr-fast);
  z-index: 500;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff8c38, var(--sunset-orange));
  transform: translateY(-3px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--almost-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  max-width: 120px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Divider / Decorative Line */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}


/* ============================================================
   17. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --sp-section: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid .quick-links {
    grid-column: 1 / -1;
  }

  .about-grid {
    gap: var(--sp-2xl);
  }

  .hero h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  }

  .values-grid {
    gap: var(--sp-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}


/* ============================================================
   18. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-section: 60px;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-phone.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-sub {
    font-size: var(--fs-base);
  }

  .hero-logo {
    max-width: 140px;
  }

  .trust-badges {
    gap: 8px;
  }

  .trust-badge {
    padding: 8px 14px;
    font-size: var(--fs-xs);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .about-image {
    order: -1;
    max-height: 350px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--sp-md);
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Lightbox */
  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: var(--fs-md);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}


/* ============================================================
   19. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --sp-section: 48px;
  }

  body {
    font-size: 0.9375rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .hero-sub {
    font-size: var(--fs-sm);
  }

  .hero-logo {
    max-width: 110px;
  }

  .hero-content {
    padding-top: 100px;
    padding-inline: var(--sp-md);
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2,
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .btn {
    padding: 12px 22px;
    font-size: var(--fs-sm);
  }

  .service-card {
    padding: var(--sp-xl) var(--sp-lg);
  }

  .value-card {
    padding: var(--sp-lg);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: var(--fs-sm);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }

  .category-header h3 {
    font-size: 1.2rem;
  }

  .nav-logo img {
    max-height: 42px;
  }

  .navbar {
    height: 65px;
  }

  .navbar.nav-scrolled {
    height: 60px;
  }

  .mobile-nav a {
    font-size: var(--fs-lg);
  }
}


/* ============================================================
   20. PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .hamburger,
  .mobile-nav,
  .back-to-top,
  .hero-particles,
  .lightbox,
  .preloader {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}


/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   22. ADDITIONAL STYLES
   ============================================================ */

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form Validation Error */
.form-error {
  display: block;
  font-size: var(--fs-xs);
  color: var(--roof-red);
  margin-top: 4px;
  font-weight: var(--fw-medium);
}

.input-error {
  border-color: var(--roof-red) !important;
  box-shadow: 0 0 0 2px rgba(198, 40, 22, 0.2) !important;
}

/* Form Success */
.form-success {
  margin-top: var(--sp-md);
  padding: var(--sp-lg);
  background: rgba(31, 91, 46, 0.25);
  border: 1px solid rgba(31, 91, 46, 0.4);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--warm-cream);
  animation: fadeInUp 0.5s var(--ease-out);
}

.form-success.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-success .success-icon {
  display: block;
  font-size: var(--fs-2xl);
  color: var(--deep-forest);
  margin-bottom: var(--sp-sm);
}

/* Services CTA */
.services-cta p {
  font-size: var(--fs-lg);
  color: var(--warm-cream);
  opacity: 0.9;
  margin-bottom: var(--sp-md);
}

/* Section subtitle in header */
.section-header .section-subtitle {
  margin-inline: auto;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(246, 235, 203, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--sunset-orange);
  border-radius: var(--radius-full);
  animation: float 2s ease-in-out infinite;
}

/* Contact Logo */
.contact-logo {
  max-width: 150px;
  margin-bottom: var(--sp-md);
  opacity: 0.9;
}

/* Language label */
.lang-label {
  font-size: var(--fs-xs);
  opacity: 0.7;
  margin-left: 4px;
}

/* Contact Phone links */
.contact-phone {
  display: block;
  color: var(--warm-cream);
  font-size: var(--fs-base);
  margin-bottom: 4px;
  transition: color var(--tr-fast);
}

.contact-phone:hover {
  color: var(--sunset-orange);
}

/* About image badge */
.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--sunset-orange), #e06510);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 20px rgba(244, 122, 31, 0.4);
}

.about-image-badge .badge-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* Lightbox overlay created by JS */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-xl);
  cursor: pointer;
  transition: background var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
}

.lightbox-overlay .lightbox-close:hover {
  background: var(--sunset-orange);
  transform: rotate(90deg);
}

.lightbox-overlay .lightbox-prev,
.lightbox-overlay .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-xl);
  cursor: pointer;
  transition: background var(--tr-fast), transform var(--tr-fast);
}

.lightbox-overlay .lightbox-prev { left: 20px; }
.lightbox-overlay .lightbox-next { right: 20px; }

.lightbox-overlay .lightbox-prev:hover {
  background: rgba(244, 122, 31, 0.4);
  transform: translateY(-50%) translateX(-3px);
}

.lightbox-overlay .lightbox-next:hover {
  background: rgba(244, 122, 31, 0.4);
  transform: translateY(-50%) translateX(3px);
}

.lightbox-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.lightbox-overlay .lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  animation: scaleIn 0.4s var(--ease-out);
}

/* ============================================================
   23. INNER PAGES HEADER
   ============================================================ */
.inner-page-header {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--dark-green);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(246, 235, 203, 0.1);
}

.inner-page-header h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  color: var(--white);
  margin-bottom: var(--sp-xs);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.inner-page-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--gold-accent));
  margin: 14px auto 0;
  border-radius: var(--radius-full);
}

.inner-page-header p {
  color: var(--warm-cream);
  opacity: 0.8;
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 20px auto 0;
}
