/* ============================================================
   ENVIRO FRIENDLY PEST CONTROLLERS — styles.css
   Fraunces + Jost | Sage / Forest / Gold | Premium Eco-Lens
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,700;1,9..144,300;1,9..144,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Custom Properties ─── */
:root {
  --cream: #F5F0E8;
  --warm-white: #FAFAF7;
  --sage: #4E7C6A;
  --sage-deep: #3A6357;
  --forest: #1F4037;
  --gold: #BF9A52;
  --gold-light: #D4B476;
  --gold-pale: #F0E6CC;
  --sage-pale: #C5D9D3;
  --sage-mist: #E6F1EE;
  --sage-mist-2: #EEF6F3;
  --sand: #EDE5D8;
  --text: #1A2820;
  --text-muted: #5A7069;
  --text-light: #8A9E97;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(31,64,55,0.07);
  --shadow-md: 0 8px 32px rgba(31,64,55,0.11);
  --shadow-lg: 0 24px 72px rgba(31,64,55,0.15);

  --nav-h: 76px;
  --section-pad: clamp(72px, 10vw, 120px);
  --section-pad-sm: clamp(48px, 6vw, 72px);

  --t: 0.28s ease;
  --t-slow: 0.6s ease;
}

/* ─── Typography Scale ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1.0625rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.7; }

/* Gold italic emphasis */
.italic-gold { font-style: italic; color: var(--gold); }
.em-sage { color: var(--sage); }

/* ─── Utilities ─── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.container-wide { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 14px 30px; border-radius: var(--radius-full);
  transition: all var(--t); white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--forest);
  box-shadow: 0 4px 20px rgba(191,154,82,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(191,154,82,0.45); }
.btn-outline {
  background: transparent; color: var(--sage); border: 1.5px solid var(--sage-pale);
}
.btn-outline:hover { border-color: var(--sage); background: var(--sage-mist); }
.btn-white {
  background: var(--white); color: var(--forest);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sage {
  background: var(--sage); color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(78,124,106,0.3);
}
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-2px); }

.btn svg { flex-shrink: 0; }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding-top: 12px;
  background: rgba(250,250,247,0.92); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
.nav.scrolled { border-bottom-color: var(--sand); box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; line-height: 1.1; gap: 10px;
}
.nav-logo-img {
  width: 40px; height: 40px; max-width: 40px; max-height: 40px; object-fit: contain; flex-shrink: 0; display: block;
}
.nav-logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--forest); letter-spacing: -0.01em;
}
.nav-logo-name em { font-style: italic; color: var(--sage); }
.nav-logo-sub {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 0.875rem; font-weight: 500; color: var(--sage); }
.nav-phone:hover { color: var(--sage-deep); }
.nav-cta .btn { padding: 10px 22px; font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--forest);
  transition: all var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 999;
  padding: 32px 24px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem; font-family: var(--font-display); font-weight: 400;
  color: var(--text); padding: 16px 0; border-bottom: 1px solid var(--sand);
}
.mobile-menu .btn { margin-top: 28px; width: 100%; justify-content: center; }
.mobile-menu-phone { font-size: 0.9rem; font-weight: 500; color: var(--sage); margin-top: 20px; text-align: center; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; padding-top: calc(var(--nav-h) + 32px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  background: var(--warm-white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(197,217,211,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(240,230,204,0.25) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
.hero-eyebrow span { color: var(--text-muted); }

.hero h1 { margin-bottom: 24px; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--sage); display: block; }
.hero-desc { max-width: 500px; margin-bottom: 40px; }

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

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-full);
  padding: 8px 16px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* Hero Image */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: stretch; justify-content: center;
  padding: 0; margin: 0; overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: var(--forest); color: var(--warm-white);
  padding: 22px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 32px; font-size: 0.875rem; font-weight: 400; letter-spacing: 0.03em;
  color: rgba(250,250,247,0.85);
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(197,217,211,0.25);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item strong { color: var(--warm-white); font-weight: 500; }

/* ─── Section Shared ─── */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.section-cream { background: var(--cream); }
.section-sage-mist { background: var(--sage-mist); }
.section-forest { background: var(--forest); }
.section-sand { background: var(--sand); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header.left { text-align: left; margin: 0 0 48px; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--sage-pale); }
.section-header h2 { margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { font-size: 1.0625rem; }

/* Divider wave */
.divider-wave { line-height: 0; }
.divider-wave svg { display: block; width: 100%; }

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  padding: 32px 24px;
  transition: all var(--t); cursor: default;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--sage-pale);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.service-card:hover .service-icon { background: var(--sage-pale); }
.service-icon svg { color: var(--sage); }
.service-card h4 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 500; }
.service-card p { font-size: 0.875rem; line-height: 1.65; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sage);
  transition: gap var(--t);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ─── How It Works ─── */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 40px; left: calc(12.5% + 40px); right: calc(12.5% + 40px);
  height: 1px; background: var(--sage-pale);
}
.how-step { text-align: center; position: relative; }
.how-number-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.how-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--sage); font-style: italic; line-height: 1;
}
.how-step h4 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 500; }
.how-step p { font-size: 0.875rem; }

/* ─── Eco Section (forest dark) ─── */
.eco-section { background: var(--forest); position: relative; overflow: hidden; }
.eco-section::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,124,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.eco-section .section-header h2 { color: var(--warm-white); }
.eco-section .section-header p { color: rgba(250,250,247,0.7); }

.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.eco-card {
  border: 1px solid rgba(197,217,211,0.2); border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--t), background var(--t);
}
.eco-card:hover { border-color: rgba(197,217,211,0.5); background: rgba(197,217,211,0.06); }
.eco-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(197,217,211,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.eco-card-icon svg { color: var(--gold-light); }
.eco-card h4 { color: var(--warm-white); margin-bottom: 12px; font-size: 1.1rem; }
.eco-card p { color: rgba(250,250,247,0.65); font-size: 0.9rem; }

/* ─── Residential / Commercial ─── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-card { padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px); }
.split-card-res { background: var(--cream); }
.split-card-com { background: var(--sage-mist-2); }

.split-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-pale); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-deep); margin-bottom: 24px;
}
.split-card h3 { margin-bottom: 16px; }
.split-card > p { margin-bottom: 28px; }
.split-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.split-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem; color: var(--text-muted);
}
.split-list-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.split-list-check svg { color: var(--sage); }

/* ─── Emergency Section ─── */
.emergency-section {
  background: var(--gold-pale); position: relative; overflow: hidden;
  border-top: 1px solid rgba(191,154,82,0.25);
  border-bottom: 1px solid rgba(191,154,82,0.25);
}
.emergency-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.emergency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); border-radius: var(--radius-full); padding: 6px 16px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 20px;
}
.emergency-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--forest); animation: pulseDot 1.5s ease infinite; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.emergency-section h2 { letter-spacing: -0.02em; margin-bottom: 16px; }
.emergency-section h2 .big { display: block; font-size: clamp(3.5rem, 8vw, 6rem); color: var(--forest); font-style: italic; line-height: 1; }
.emergency-section > div > p { margin-bottom: 32px; }

.emergency-cards { display: flex; flex-direction: column; gap: 16px; }
.emergency-card {
  background: rgba(255,255,255,0.7); border-radius: var(--radius);
  border: 1px solid rgba(191,154,82,0.2);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.emergency-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(191,154,82,0.3);
}
.emergency-card-icon svg { color: var(--gold); }
.emergency-card h4 { font-size: 1rem; margin-bottom: 4px; }
.emergency-card p { font-size: 0.85rem; }

/* ─── Service Areas ─── */
.areas-section { background: var(--sage-mist); }
.areas-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.areas-tag-cloud {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.area-pill {
  background: var(--white); border: 1px solid var(--sage-pale); border-radius: var(--radius-full);
  padding: 9px 20px; font-size: 0.875rem; font-weight: 400; color: var(--text-muted);
  transition: all var(--t);
}
.area-pill:hover, .area-pill.featured {
  background: var(--sage); color: var(--warm-white); border-color: var(--sage);
}
.areas-note { margin-top: 20px; font-size: 0.875rem; }

.areas-map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}

/* ─── Final CTA ─── */
.cta-section {
  background: var(--sage); position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--warm-white); margin-bottom: 16px; position: relative; }
.cta-section > .container > p { color: rgba(250,250,247,0.75); max-width: 540px; margin: 0 auto 40px; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--warm-white); }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px); padding-bottom: 72px;
  background: var(--cream); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%; background: var(--sage-mist); clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 620px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { max-width: 520px; }

/* ─── Services Page ─── */
.services-page-section { padding: var(--section-pad) 0; }
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; margin-bottom: 80px;
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-visual {
  background: var(--sage-mist); border-radius: var(--radius-xl);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-detail-visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.service-detail-visual-inner {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--sage-pale); display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-detail-visual-inner::before {
  content: ''; position: absolute; inset: -16px; border-radius: 50%;
  border: 1px dashed rgba(78,124,106,0.35);
}
.service-detail-visual-inner::after {
  content: ''; position: absolute; inset: -36px; border-radius: 50%;
  border: 1px solid rgba(78,124,106,0.12);
}
.service-detail-visual svg { color: var(--sage); }

.service-detail-content { padding-top: 8px; }
.service-detail-content .eyebrow { margin-bottom: 12px; }
.service-detail-content h3 { margin-bottom: 16px; }
.service-detail-content > p { margin-bottom: 24px; }
.service-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
}
.check-sm {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage-mist); border: 1px solid var(--sage-pale);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-sm svg { color: var(--sage); }

/* Maintenance Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--sand); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all var(--t);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  background: var(--forest); border-color: transparent;
}
.plan-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 20px; right: -24px;
  background: var(--gold); color: var(--forest); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 40px;
  transform: rotate(35deg); transform-origin: center;
}
.plan-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.plan-card:not(.featured) .plan-icon { background: var(--sage-mist); }
.plan-card.featured .plan-icon { background: rgba(197,217,211,0.2); }
.plan-icon svg { color: var(--sage); }
.plan-card.featured .plan-icon svg { color: var(--sage-pale); }
.plan-card h4 { font-size: 1.2rem; margin-bottom: 6px; }
.plan-card.featured h4 { color: var(--warm-white); }
.plan-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-card.featured .plan-subtitle { color: rgba(250,250,247,0.6); }

.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-muted);
}
.plan-card.featured .plan-features li { color: rgba(250,250,247,0.75); }

/* Prep Section */
.prep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.prep-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--sand); padding: 28px;
}
.prep-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--sage-deep); }
.prep-card p { font-size: 0.875rem; }

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: flex-start; gap: 18px;
}
.info-card.featured { background: var(--forest); border-color: transparent; }
.info-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage-mist); display: flex; align-items: center; justify-content: center;
}
.info-card.featured .info-icon { background: rgba(197,217,211,0.2); }
.info-icon svg { color: var(--sage); }
.info-card.featured .info-icon svg { color: var(--sage-pale); }
.info-card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.info-card.featured .info-card-label { color: var(--gold-light); }
.info-card-title { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 4px; font-family: var(--font-display); }
.info-card.featured .info-card-title { color: var(--warm-white); }
.info-card p { font-size: 0.875rem; color: var(--text-muted); }
.info-card.featured p { color: rgba(250,250,247,0.65); }
.info-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.info-action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; padding: 7px 14px;
  border-radius: var(--radius-full); transition: all var(--t);
}
.info-action-call { background: var(--sage-mist); color: var(--sage); border: 1px solid var(--sage-pale); }
.info-action-call:hover { background: var(--sage-pale); }
.info-action-wa { background: rgba(37,211,102,0.1); color: #128C7E; border: 1px solid rgba(37,211,102,0.25); }
.info-action-wa:hover { background: rgba(37,211,102,0.2); }

/* Form */
.quote-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--sand); padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.form-title { font-size: 1.5rem; margin-bottom: 6px; }
.form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.9375rem; color: var(--text);
  background: var(--warm-white); border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  padding: 12px 16px; outline: none; transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(78,124,106,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 6px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6' stroke='%235A7069' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat center;
}
.form-submit { margin-top: 8px; width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-privacy { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 12px; }

/* Map */
.map-section { background: var(--cream); }
.map-embed-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand);
  height: 360px;
}
.map-embed-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── FAQ / Accordion ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--t);
}
.faq-item.open { border-color: var(--sage-pale); }
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; text-align: left; font-family: var(--font-body);
  font-size: 1rem; font-weight: 500; color: var(--text); transition: color var(--t);
}
.faq-toggle:hover { color: var(--sage); }
.faq-item.open .faq-toggle { color: var(--sage); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-icon { background: var(--sage); border-color: var(--sage); }
.faq-icon svg { color: var(--text-muted); transition: all var(--t); }
.faq-item.open .faq-icon svg { color: var(--warm-white); transform: rotate(45deg); }
.faq-body { display: none; padding: 0 28px 24px; }
.faq-item.open .faq-body { display: block; }
.faq-body p { font-size: 0.9375rem; }

/* ─── Footer ─── */
.footer { background: var(--forest); color: rgba(250,250,247,0.7); }
.footer-top { padding: clamp(56px, 8vw, 96px) 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--warm-white); font-weight: 500; }
.footer-logo-name em { font-style: italic; color: var(--sage-pale); }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(250,250,247,0.6); margin-bottom: 20px; }
.footer-dalrrd {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(197,217,211,0.1); border: 1px solid rgba(197,217,211,0.2);
  border-radius: var(--radius-full); padding: 7px 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage-pale);
}

.footer-col h5 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(250,250,247,0.6); transition: color var(--t); }
.footer-links a:hover { color: var(--warm-white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.875rem;
}
.footer-contact-item svg { color: var(--sage-pale); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(250,250,247,0.6); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--warm-white); }

.footer-bottom {
  border-top: 1px solid rgba(197,217,211,0.15);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(250,250,247,0.4); }

/* ─── WhatsApp Float ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Load animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-content .hero-eyebrow { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.3s; }
.hero-content .hero-desc { animation-delay: 0.45s; }
.hero-content .hero-actions { animation-delay: 0.6s; }
.hero-content .hero-pills { animation-delay: 0.75s; }
.hero-visual { opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map-placeholder { display: none; }
  .service-detail { grid-template-columns: 1fr; direction: ltr !important; }
  .service-detail-visual { min-height: 200px; }
  .prep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 24px); min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 40px 0 60px; }
  .split-grid { grid-template-columns: 1fr; }
  .emergency-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-item + .trust-item { border-left: none; }
  .trust-inner { flex-direction: column; gap: 4px; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-form-card { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .page-hero::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
