/* ============================================================
   MR. MOLD REMOVAL NAPLES — Main Stylesheet
   Design: Navy #0F2A43 | Teal #0E7C66 | Amber #F59E0B
   ============================================================ */

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

:root {
  --navy:   #0F2A43;
  --navy-dk:#091e31;
  --teal:   #0E7C66;
  --teal-lt:#10957b;
  --amber:  #F59E0B;
  --amber-dk:#d97706;
  --white:  #ffffff;
  --gray-50:#f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-400:#94a3b8;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1e293b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font: 'Manrope', 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { line-height: 1.72; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-lt); }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.text-teal    { color: var(--teal); }
.text-amber   { color: var(--amber); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-muted   { color: var(--gray-600); }
.bg-navy      { background: var(--navy); }
.bg-teal      { background: var(--teal); }
.bg-gray      { background: var(--gray-50); }
.bg-white     { background: var(--white); }
.fw-800       { font-weight: 800; }

/* reveal animation — only when JS is active (no-js removed on load) */
html:not(.no-js) .reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
html:not(.no-js) .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.75rem; border-radius: var(--radius-md);
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-amber {
  background: var(--amber); color: var(--navy);
  box-shadow: 0 4px 18px rgba(245,158,11,.35);
}
.btn-amber:hover { background: var(--amber-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.4); color: var(--navy); }
.btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 18px rgba(14,124,102,.28);
}
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,124,102,.38); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); color: var(--white); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .9rem; }

/* ---- HEADER / NAV ---- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: rgba(9,30,49,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
/* Only pages with a dark hero behind the header start transparent */
body.has-hero #site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
body.has-hero #site-header.scrolled {
  background: rgba(9,30,49,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; max-width: 1200px; margin: 0 auto;
}
.site-logo {
  display: flex; align-items: center; gap: .65rem; text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px; background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-size: .95rem; font-weight: 800; color: var(--white); letter-spacing: -.01em;
}
.logo-text span { font-size: .75rem; color: rgba(255,255,255,.65); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: color var(--transition); letter-spacing: .01em;
}
.main-nav a:hover { color: var(--amber); }
.main-nav a:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 3px; }

.header-cta {
  display: flex; align-items: center; gap: 1rem;
}
.header-phone {
  display: none;
  font-weight: 800; font-size: 1rem; color: var(--amber);
  text-decoration: none; letter-spacing: -.01em;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--amber-dk); }
@media (min-width: 900px) { .header-phone { display: flex; align-items: center; gap: .35rem; } }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 6px; }
.hamburger span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.hamburger span:nth-child(2) { width: 75%; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Mobile nav drawer */
#mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--navy-dk); z-index: 1000; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 5rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.5rem;
  overflow-y: auto;
}
#mobile-nav.open { transform: translateX(0); }
#mobile-nav a {
  color: var(--white); font-size: 1.1rem; font-weight: 600;
  padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: block; text-decoration: none; transition: color var(--transition);
}
#mobile-nav a:hover { color: var(--amber); }
#mobile-nav a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 3px; }
#mobile-nav .nav-phone-mobile {
  margin-top: 1rem; background: var(--amber); color: var(--navy);
  border-radius: var(--radius-md); padding: 1rem; text-align: center;
  font-weight: 800; font-size: 1.1rem; border-bottom: none;
}
#mobile-nav .nav-phone-mobile:hover { background: var(--amber-dk); color: var(--navy); }

#nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 999;
}
#nav-overlay.open { display: block; }

#close-mobile-nav {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.12); border: none; color: var(--white);
  width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
#close-mobile-nav:hover { background: rgba(255,255,255,.22); }
#close-mobile-nav:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

/* ---- HERO ---- */
#hero {
  position: relative; min-height: 100svh; 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;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,30,49,.93) 0%,
    rgba(9,30,49,.82) 45%,
    rgba(14,124,102,.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 8rem 1.25rem 4rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 400px; align-items: center; gap: 4rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(14,124,102,.25); border: 1px solid rgba(14,124,102,.5);
  color: #5eead4; border-radius: 100px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  backdrop-filter: blur(8px); margin-bottom: 1.25rem;
}
.hero-badge svg { flex-shrink: 0; }
.hero-main { min-width: 0; }
.hero-main h1 {
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-main h1 .accent { color: var(--amber); }
.hero-definition {
  color: rgba(255,255,255,.82); font-size: 1.1rem; line-height: 1.72;
  margin-bottom: 2rem; max-width: 640px;
}
.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 2rem;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px); color: rgba(255,255,255,.9);
  border-radius: 100px; padding: .4rem .9rem; font-size: .8rem; font-weight: 600;
}
.trust-chip svg { color: var(--amber); flex-shrink: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: .9rem 1rem; font-size: .95rem; }
  .hero-ctas .btn { white-space: normal; padding: .85rem 1.2rem; font-size: .95rem; }
}

/* Hero glass card */
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl); padding: 2rem;
  color: var(--white);
}
.hero-card-title {
  font-size: 1rem; font-weight: 700; color: var(--amber);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.emergency-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.emergency-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .92rem; color: rgba(255,255,255,.85);
}
.emergency-list li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.hero-phone-cta {
  margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem;
}
.hero-phone-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: .35rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero-phone-number {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--amber);
  text-decoration: none; letter-spacing: -.02em;
}
.hero-phone-number:hover { color: var(--amber-dk); }

/* ---- TRUST BAR ---- */
#trust-bar {
  background: var(--navy); border-bottom: 3px solid var(--teal);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 700;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ---- WHY MOLD SECTION ---- */
#why-mold { background: var(--gray-50); }
.section-label {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(14,124,102,.1); color: var(--teal); border: 1px solid rgba(14,124,102,.25);
  border-radius: 100px; padding: .35rem .9rem; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem;
}
.risk-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .risk-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .risk-cards { grid-template-columns: repeat(4, 1fr); } }

.risk-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.risk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.risk-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(14,124,102,.12), rgba(14,124,102,.06));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 1rem;
}
.risk-num {
  width: 28px; height: 28px; background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; margin-bottom: .75rem;
}
.health-alert {
  margin-top: 2.5rem; background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 2rem 2rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
  border: 1px solid rgba(14,124,102,.4);
}
.health-alert-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.health-alert p { color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 0; }
.health-alert p strong { color: var(--amber); }

/* ---- SERVICES SECTION ---- */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(14,124,102,.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, #e6f5f1, #c8ebe4);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin: 0; }
.service-card p { color: var(--gray-600); font-size: .92rem; flex: 1; margin: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--teal); font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: .6rem; color: var(--teal-lt); }
.service-link svg { transition: transform var(--transition); }
.service-link:hover svg { transform: translateX(3px); }

/* ---- PROCESS SECTION ---- */
#process { background: var(--navy); color: var(--white); }
#process h2 { color: var(--white); }
#process .section-label { background: rgba(255,255,255,.08); color: #5eead4; border-color: rgba(94,234,212,.25); }
.process-intro { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; font-size: 1.05rem; }

.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step {
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: .75rem;
  background: rgba(255,255,255,.04);
  transition: background var(--transition);
}
.process-step.open { background: rgba(255,255,255,.07); }
.step-trigger {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; background: transparent; border: none; cursor: pointer;
  text-align: left; color: var(--white);
  transition: background var(--transition);
}
.step-trigger:hover { background: rgba(255,255,255,.06); }
.step-trigger:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; border-radius: var(--radius-md); }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--white);
}
.step-title {
  font-size: 1rem; font-weight: 700; flex: 1; color: var(--white);
}
.step-chevron {
  color: rgba(255,255,255,.5); transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.process-step.open .step-chevron { transform: rotate(180deg); color: var(--amber); }
.step-body {
  display: none; padding: 0 1.5rem 1.5rem 4.5rem;
}
.step-body.open { display: block; }
.step-body p {
  color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.75;
}

@media (min-width: 1024px) {
  .process-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
  .process-step:last-child { grid-column: 1 / -1; }
  .step-body { display: block !important; }
  .step-chevron { display: none; }
  .process-step { cursor: default; }
  .step-trigger { cursor: default; pointer-events: none; }
}

/* ---- COST SECTION ---- */
#cost { background: var(--gray-50); }
.cost-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
@media (min-width: 1024px) { .cost-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.price-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.price-table tr { border-bottom: 1px solid var(--gray-200); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: .85rem .25rem; font-size: .92rem; vertical-align: top; }
.price-table td:first-child { color: var(--gray-700); font-weight: 600; padding-right: 1.5rem; }
.price-table td:last-child { color: var(--teal); font-weight: 700; white-space: nowrap; text-align: right; }
.price-table tr:hover td { background: var(--gray-100); }
.price-table tr:hover td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.price-table tr:hover td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.insurance-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm); margin-top: 1.5rem;
}
.insurance-box h4 { color: var(--navy); margin-bottom: .75rem; font-size: 1rem; }
.insurance-box p { color: var(--gray-600); font-size: .92rem; margin-bottom: .75rem; }
.insurance-box p:last-child { margin-bottom: 0; }
.cost-cta-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ---- SERVICE AREAS ---- */
#service-areas { background: var(--white); }
.zip-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.zip-chip {
  background: var(--navy); color: var(--white);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .85rem; font-weight: 700; letter-spacing: .02em;
}
.neighborhood-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
  margin: 1.25rem 0;
}
@media (min-width: 768px) { .neighborhood-grid { grid-template-columns: repeat(3, 1fr); } }
.neighborhood-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--gray-700); font-weight: 600;
}
.neighborhood-item svg { color: var(--teal); flex-shrink: 0; }

.map-placeholder {
  background: linear-gradient(135deg, #e6f5f1 0%, #c8ebe4 50%, #0E7C6620 100%);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  height: 320px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  position: relative; overflow: hidden; margin-top: 2rem;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230E7C66' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.map-label { font-size: 1rem; font-weight: 700; color: var(--teal); position: relative; }
.map-sub { font-size: .85rem; color: var(--gray-600); position: relative; }
.map-pins { display: flex; gap: .5rem; position: relative; }
.map-pin { color: var(--amber); animation: bounce 1.4s infinite; }
.map-pin:nth-child(2) { animation-delay: .2s; }
.map-pin:nth-child(3) { animation-delay: .4s; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- FAQ SECTION ---- */
#faq { background: var(--gray-50); }
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem; background: transparent; border: none;
  cursor: pointer; text-align: left; font-family: var(--font);
  font-size: 1rem; font-weight: 700; color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; border-radius: var(--radius-md); }
.faq-chevron { color: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--gray-600); font-size: .95rem; line-height: 1.72; }

/* ---- FINAL CTA ---- */
#final-cta {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 50%, #0a3d2e 100%);
  color: var(--white); text-align: center;
}
#final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta-sub { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 700px; margin: 0 auto 2rem; }
.final-cta-bullets {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.75rem;
  margin-bottom: 2.5rem;
}
.final-cta-bullet {
  display: flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600;
}
.final-cta-bullet svg { color: var(--teal); }
.final-phone-display {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  color: var(--amber); display: block; text-decoration: none;
  margin: 1rem auto; letter-spacing: -.02em;
  transition: color var(--transition);
}
.final-phone-display:hover { color: var(--amber-dk); }
.final-tagline { color: rgba(255,255,255,.55); font-size: .88rem; margin-top: 2rem; }

/* ---- FOOTER ---- */
#site-footer { background: var(--navy-dk); color: rgba(255,255,255,.65); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand .logo-text strong { font-size: 1rem; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: .75rem; line-height: 1.7; }
.footer-heading { font-size: .8rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-links a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem; padding-top: 1.5rem; max-width: 1200px;
  margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  align-items: center; font-size: .82rem;
}
.footer-legal { color: rgba(255,255,255,.38); }

/* ---- STICKY MOBILE CTA BAR ---- */
#sticky-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--amber); padding: .9rem 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(0); transition: transform var(--transition);
}
#sticky-call-bar.hidden { transform: translateY(100%); }
@media (min-width: 1024px) { #sticky-call-bar { display: none; } }
.sticky-call-link {
  display: flex; align-items: center; gap: .6rem;
  color: var(--navy); font-weight: 800; font-size: 1.05rem;
  text-decoration: none;
}
.sticky-call-link svg { flex-shrink: 0; }
.sticky-call-label { font-size: .75rem; font-weight: 600; color: var(--navy); opacity: .7; }

/* Padding for mobile to account for sticky bar */
@media (max-width: 1023px) {
  body { padding-bottom: 64px; }
}

/* ---- SCROLL REVEAL STAGGER ---- */
.stagger-1 { transition-delay: .05s !important; }
.stagger-2 { transition-delay: .12s !important; }
.stagger-3 { transition-delay: .19s !important; }
.stagger-4 { transition-delay: .26s !important; }
.stagger-5 { transition-delay: .33s !important; }
.stagger-6 { transition-delay: .40s !important; }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--gray-200); margin: 2rem 0; }
.highlight-box {
  background: linear-gradient(135deg, rgba(14,124,102,.08), rgba(14,124,102,.04));
  border: 1px solid rgba(14,124,102,.2); border-radius: var(--radius-md);
  padding: 1.5rem; margin: 1.5rem 0;
}
.highlight-box p { color: var(--gray-700); margin: 0; }

.inline-phone-link { color: var(--teal); font-weight: 700; text-decoration: none; white-space: nowrap; }
.inline-phone-link:hover { color: var(--teal-lt); text-decoration: underline; }

/* ---- PRINT ---- */
@media print {
  #site-header, #sticky-call-bar, #mobile-nav, #nav-overlay { display: none !important; }
  body { padding-bottom: 0 !important; }
}
