/* ============================================================
   RAFTER THREE PROPERTY MAINTENANCE - MAIN STYLESHEET
   Design: Modern Earthy Masculine | Colorado Springs Irrigation
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Color Palette */
  --forest:       #1D3A1A;
  --forest-mid:   #2B4F24;
  --forest-light: #3D6E34;
  --green:        #4A7C2F;
  --primary:      #4A7C2F;
  --green-bright: #5A9438;
  --earth:        #6B4B2A;
  --earth-light:  #8B6340;
  --copper:       #A0622D;
  --copper-light: #C07840;
  --tan:          #C4A86B;
  --tan-light:    #D9C08C;
  --cream:        #F5F0E6;
  --cream-dark:   #EDE5D4;
  --charcoal:     #1A1C19;
  --charcoal-mid: #252A22;
  --charcoal-light:#323830;
  --stone:        #4A4E45;
  --stone-light:  #6B7063;
  --white:        #FFFFFF;
  --white-90:     rgba(255,255,255,0.9);
  --white-70:     rgba(255,255,255,0.7);
  --white-40:     rgba(255,255,255,0.4);
  --black-80:     rgba(0,0,0,0.8);
  --black-60:     rgba(0,0,0,0.6);
  --black-40:     rgba(0,0,0,0.4);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Merriweather', serif;
  --font-body:    'Raleway', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Spacing */
  --section-pad: 100px 0;
  --section-pad-sm: 60px 0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.3);
  --shadow-green: 0 8px 32px rgba(74,124,47,0.25);

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-med:  0.35s ease;
  --trans-slow: 0.5s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility Classes ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title span { color: var(--green-bright); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-90);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--trans-med);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74,124,47,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-70);
}

.btn-secondary:hover {
  background: var(--white-40);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--copper);
  color: var(--white);
}

.btn-copper:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,98,45,0.4);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-bright);
  border: 2px solid var(--green-bright);
}

.btn-outline-green:hover {
  background: var(--green-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--green-bright);
  margin: 0 auto 24px;
}

.text-center .divider { margin: 20px auto 30px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  background: transparent;
  transition: all var(--trans-med);
}

.navbar.scrolled {
  background: var(--charcoal);
  height: 80px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(74,124,47,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.nav-logo img {
  height: 115px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all var(--trans-med);
  flex-shrink: 0;
}

.navbar.scrolled .nav-logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex: 0 0 auto;
}

.nav-item {
  position: relative;
}

.nav-item-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-90);
  transition: color var(--trans-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--trans-fast);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-link-with-caret {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  font-size: 0.8rem;
  line-height: 1;
  color: var(--tan-light);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: 14px;
  border: 1px solid rgba(74,124,47,0.2);
  border-radius: var(--radius-lg);
  background: rgba(26,28,25,0.98);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
  display: grid;
  gap: 6px;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  background: transparent;
}

.nav-dropdown a:hover {
  background: rgba(74,124,47,0.12);
}

.nav-dropdown a::after {
  display: none;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--trans-fast);
}

.nav-phone:hover { color: var(--tan-light); }

.nav-phone svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-left: 18px;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(196,168,107,0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29,58,26,0.96), rgba(74,124,47,0.92));
  box-shadow: 0 10px 28px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), border-color var(--trans-fast), background var(--trans-fast);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--cream);
  border-radius: 999px;
  transition: all var(--trans-med);
}

.hamburger:hover,
.hamburger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(217,192,140,0.85);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34), 0 0 0 4px rgba(196,168,107,0.16);
}

.hamburger:focus-visible {
  outline: none;
}

.navbar.scrolled .hamburger {
  background: linear-gradient(135deg, rgba(43,79,36,0.98), rgba(160,98,45,0.92));
  border-color: rgba(217,192,140,0.5);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: var(--charcoal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--trans-med);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  transition: color var(--trans-fast);
}

.mobile-nav a:hover { color: var(--green-bright); }

.mobile-nav-group {
  width: min(340px, calc(100vw - 48px));
}

.mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: none;
  background: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav-toggle-icon {
  color: var(--green-bright);
  transition: transform var(--trans-fast);
}

.mobile-subnav {
  display: grid;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-med), margin-top var(--trans-med);
}

.mobile-subnav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.mobile-nav-group.open .mobile-subnav {
  max-height: 320px;
  margin-top: 18px;
}

.mobile-nav-group.open .mobile-nav-toggle-icon {
  transform: rotate(45deg);
}

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 1101;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,28,25,0.85) 0%,
    rgba(27,58,16,0.65) 40%,
    rgba(26,28,25,0.35) 70%,
    rgba(26,28,25,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { animation: fadeInLeft 1s ease 0.3s both; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,124,47,0.5);
  border: 1px solid rgba(74,124,47,0.5);
  color: var(--tan-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ---- Section Theme - Light ---- */
.section-light {
  background-color: var(--cream) !important;
  color: var(--charcoal) !important;
}

.section-light .section-title { color: var(--charcoal) !important; }
.section-light .section-subtitle { color: var(--stone) !important; }
.section-light .divider { background: var(--green) !important; }
.section-light .trust-text-title { color: var(--charcoal) !important; }
.section-light .trust-text-sub { color: var(--stone) !important; }
.section-light .trust-icon { color: var(--green) !important; }
.section-light .why-feature h4 { color: var(--charcoal) !important; }
.section-light .why-feature p { color: var(--stone) !important; }
.section-light .feature-icon { color: var(--green) !important; }
.section-light .faq-question { color: var(--charcoal) !important; border-bottom-color: rgba(0,0,0,0.1) !important; }
.section-light .faq-answer-inner { color: var(--stone) !important; }
.section-light .faq-toggle { color: var(--green) !important; }
.section-light .step-num { background: var(--green) !important; color: var(--white) !important; border-color: var(--forest) !important; }
.section-light .process-step h3 { color: var(--charcoal) !important; }
.section-light .process-step p { color: var(--stone) !important; }
.section-light .section-label { color: var(--green) !important; }

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--green-bright);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.stat-item {
  display: block;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-top: 4px;
}

/* Hero Card / Lead Form */
.hero-card {
  background: rgba(26,28,25,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(74,124,47,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  animation: fadeInRight 1s ease 0.5s both;
}

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

.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--cream-dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--trans-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(74,124,47,0.08);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7063' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option { background: var(--charcoal-mid); }

.hero-card .btn { width: 100%; justify-content: center; }

.hero-card .privacy-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 10px;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--white-40);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

/* ================================================================
   PAGE HEADER (Sub-pages)
   ================================================================ */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  background: var(--charcoal);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,28,25,0.80), rgba(26,28,25,0.35));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.breadcrumb a {
  color: var(--tan);
  transition: color var(--trans-fast);
}

.breadcrumb a:hover { color: var(--tan-light); }

.breadcrumb span { color: var(--stone); }

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

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--white-40);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--white-40);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--forest);
  border-bottom: 2px solid var(--forest-mid);
  padding: 0;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  transition: background var(--trans-fast);
}

.trust-item:first-child { border-left: none; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }

.trust-icon {
  width: 40px; height: 40px;
  background: rgba(74,124,47,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-bright);
}

.trust-icon svg { width: 20px; height: 20px; }


.trust-text-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.3;
}

.trust-text-sub {
  font-size: 0.74rem;
  color: var(--stone-light);
  margin-top: 2px;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  background: var(--charcoal-mid);
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--charcoal-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-med);
  cursor: pointer;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,124,47,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--trans-med);
  border-radius: var(--radius-lg);
}

.service-card:hover {
  border-color: rgba(74,124,47,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.service-card:hover::before { opacity: 1; }

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,28,25,0.85) 0%, transparent 60%);
}

.service-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body {
  padding: 24px;
}

.service-icon {
  width: 44px; height: 44px;
  background: rgba(74,124,47,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  margin-bottom: 16px;
  transition: background var(--trans-med);
}

.service-card:hover .service-icon {
  background: rgba(74,124,47,0.3);
}

.service-icon svg { width: 22px; height: 22px; }

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap var(--trans-fast);
}

.service-link svg { width: 14px; height: 14px; transition: transform var(--trans-fast); }
.service-card:hover .service-link { gap: 10px; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section {
  background: var(--charcoal);
  padding: var(--section-pad);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.why-image-wrapper {
  position: relative;
}

.why-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.why-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--forest);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}

.why-badge-text {
  font-size: 0.75rem;
  color: var(--stone-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.why-content {
  display: block;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px; height: 50px;
  background: rgba(74,124,47,0.1);
  border: 1px solid rgba(74,124,47,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-bright);
  transition: all var(--trans-med);
}

.feature-icon svg { width: 22px; height: 22px; }

.why-feature:hover .feature-icon {
  background: rgba(74,124,47,0.2);
  border-color: var(--green);
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.7;
}

/* ================================================================
   ABOUT / POSITIONING SECTION
   ================================================================ */
.about-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal-mid) 60%, var(--forest-mid) 100%);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,124,47,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(160,98,45,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-left: 4px solid var(--green);
  padding-left: 28px;
  margin: 32px 0;
}

.about-bullets {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
  display: grid;
  gap: 14px;
}

.about-bullet {
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.6;
}

.about-bullet::marker {
  color: var(--green-bright);
}

.about-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--trans-med);
}

.pillar-card:hover {
  background: rgba(74,124,47,0.1);
  border-color: rgba(74,124,47,0.3);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(74,124,47,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.pillar-icon svg { width: 24px; height: 24px; }

.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.84rem;
  color: var(--stone-light);
  line-height: 1.7;
}

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section {
  background: var(--charcoal-mid);
  padding: var(--section-pad);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--tan) 50%, var(--green) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--forest);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-bright);
  transition: all var(--trans-med);
  cursor: default;
}

.process-step:hover .step-num {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--stone-light);
  line-height: 1.7;
}

/* ================================================================
   PROBLEMS SECTION
   ================================================================ */
.problems-section {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--trans-med);
}

.problem-card:hover {
  border-color: rgba(160,98,45,0.4);
  background: var(--charcoal-light);
  transform: translateY(-4px);
}

.problem-icon {
  width: 44px; height: 44px;
  background: rgba(160,98,45,0.1);
  border: 1px solid rgba(160,98,45,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper-light);
}

.problem-icon svg { width: 22px; height: 22px; }

.problem-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.problem-text p {
  font-size: 0.82rem;
  color: var(--stone-light);
  line-height: 1.6;
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials-section {
  background: var(--forest);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 400px;
  color: rgba(255,255,255,0.015);
  position: absolute;
  top: -80px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--trans-med);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--green-bright);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 22px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(74,124,47,0.3);
  background: rgba(74,124,47,0.05);
  transform: translateY(-6px);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars span {
  color: var(--tan);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info {
  display: block;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.author-loc {
  font-size: 0.75rem;
  color: var(--stone-light);
  margin-top: 2px;
}

.testimonial-service-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(74,124,47,0.2);
  border: 1px solid rgba(74,124,47,0.3);
  color: var(--green-bright);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================================
   SERVICE AREAS
   ================================================================ */
.areas-section {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.areas-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.areas-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.area-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cream-dark);
  transition: color var(--trans-fast);
  cursor: default;
}

.area-item:hover { color: var(--green-bright); }

.area-item.is-link {
  cursor: pointer;
}

.area-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-map-wrapper {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1.1/1;
  position: relative;
}

.area-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.map-pin-icon {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(74,124,47,0.4);
}

.map-pin-icon::after {
  content: '';
  width: 20px; height: 20px;
  background: var(--forest);
  border-radius: 50%;
  transform: rotate(45deg);
}

.area-map-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
}

.area-map-placeholder p {
  font-size: 0.88rem;
  color: var(--stone-light);
}

/* Embedded map styling */
.area-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
  background: var(--charcoal-mid);
  padding: var(--section-pad);
}

.faq-wrapper {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.active { border-color: rgba(74,124,47,0.4); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  background: var(--charcoal-light);
  gap: 20px;
  transition: background var(--trans-fast);
  user-select: none;
}

.faq-question:hover { background: rgba(74,124,47,0.08); }

.faq-item.active .faq-question { background: rgba(74,124,47,0.1); }

.faq-question span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px; height: 28px;
  background: rgba(74,124,47,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-bright);
  transition: all var(--trans-fast);
}

.faq-toggle svg { width: 14px; height: 14px; transition: transform var(--trans-fast); }

.faq-item.active .faq-toggle { background: var(--green); color: var(--white); }
.faq-item.active .faq-toggle svg { transform: rotate(45deg); }

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height var(--trans-med);
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.9rem;
  color: var(--stone-light);
  line-height: 1.8;
}

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--forest);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, rgba(27,58,16,0.85) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.cta-inner .section-title { margin-bottom: 16px; }
.cta-inner .section-subtitle { margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgent-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160,98,45,0.2);
  border: 1px solid rgba(160,98,45,0.4);
  color: var(--tan);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand {
  display: block;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-light);
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: rgba(74,124,47,0.2);
  border-color: var(--green);
  color: var(--green-bright);
}

.social-link svg { width: 18px; height: 18px; }

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--stone-light);
  transition: color var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.7rem;
  color: var(--green);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.footer-links a:hover { color: var(--cream); }
.footer-links a:hover::before { opacity: 1; }

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-area-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform var(--trans-med), border-color var(--trans-fast), box-shadow var(--trans-med);
}

.service-area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,124,47,0.38);
  box-shadow: var(--shadow-md);
}

.service-area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-area-card p {
  color: var(--stone-light);
  margin-bottom: 18px;
}

.service-area-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.service-area-highlights span {
  border: 1px solid rgba(90,148,56,0.24);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dark);
}

.service-area-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-bright);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.service-area-link:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  width: 36px; height: 36px;
  background: rgba(74,124,47,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-bright);
}

.contact-icon svg { width: 16px; height: 16px; }

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  display: block;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.88rem;
  color: var(--cream-dark);
}

.contact-value a { transition: color var(--trans-fast); }
.contact-value a:hover { color: var(--green-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--stone);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--stone);
  transition: color var(--trans-fast);
}

.footer-bottom-links a:hover { color: var(--green-bright); }

/* ================================================================
   STICKY MOBILE CTA
   ================================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 2px solid var(--green);
  padding: 12px 20px;
  gap: 12px;
}

.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.sticky-call { background: var(--green); color: var(--white); }
.sticky-request { background: var(--copper); color: var(--white); }

.sticky-mobile-cta svg { width: 18px; height: 18px; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ================================================================
   RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 1024px) {
  .navbar { height: 90px; padding: 0 20px 0 24px; }
  .nav-logo img { height: 64px; }
  .navbar.scrolled { height: 74px; }
  .navbar.scrolled .nav-logo img { height: 48px; }

  /* Navbar Toggle */
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero-content { grid-template-columns: 1fr; max-width: 700px; padding-top: 140px; gap: 36px; }
  .hero-card {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    animation: none;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrapper { max-width: 480px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .areas-container { grid-template-columns: 1fr; gap: 40px; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ================================================================
   RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }

  .sticky-mobile-cta { display: flex; }

  body { padding-bottom: 72px; }
  
  .hero-content { padding: 132px 20px 96px; gap: 28px; }
  .hero-card { padding: 28px 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .testimonials-wrapper { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .areas-list-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 0 0 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-cta-row { flex-direction: column; }
  .hero-actions { flex-direction: column; }
}

.page-header-content .section-subtitle {
  margin: 0 0 32px 0;
  max-width: 650px;
}

.section-light .faq-question:hover { background: rgba(0,0,0,0.05) !important; color: var(--charcoal) !important; }
.section-light .faq-item.active .faq-question { background: rgba(0,0,0,0.05) !important; color: var(--charcoal) !important; }
.section-light .faq-item.active .faq-toggle { color: var(--white) !important; }
