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

:root {
--blue:   #0057ff;
--cyan:   #00a8d6;
--dark:   #0a0f1e;
--muted:  #4a5568;
--light:  #f0f4ff;
--white:  #ffffff;
--card:   #f7faff;
--border: rgba(0,87,255,0.15);
--shadow: 0 4px 24px rgba(0,87,255,.1);
}

html { scroll-behavior: smooth; }

body {
background: #fff;
color: var(--dark);
font-family: 'Barlow', sans-serif;
font-weight: 400;
overflow-x: hidden;
}

body::before {
content: '';
position: fixed; inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none; z-index: 0; opacity: .5;
}

/* ═══════════════════════════════════════════════
 TYPOGRAPHY SHARED
═══════════════════════════════════════════════ */
.section-label {
display: inline-block; font-size: .72rem; font-weight: 700;
letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
margin-bottom: .8rem;
}
.section-title {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1;
letter-spacing: .03em; color: var(--dark);
}
.section-title span { color: var(--blue); }
.section-sub {
font-size: 1.05rem; color: var(--muted);
line-height: 1.7; margin-top: .8rem; max-width: 600px;
}

section { position: relative; z-index: 1; padding: 6rem 4rem; }

/* ═══════════════════════════════════════════════
 BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
background: linear-gradient(90deg, var(--blue), var(--cyan));
color: #fff; font-weight: 700; font-size: .9rem;
text-transform: uppercase; letter-spacing: .06em;
border: none; padding: 1rem 2.4rem; border-radius: 8px;
cursor: pointer; text-decoration: none; display: inline-block;
box-shadow: 0 0 28px rgba(0,87,255,.3);
transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { opacity:.88; transform:translateY(-2px); box-shadow: 0 0 40px rgba(0,168,214,.4); }

.btn-outline {
background: transparent; color: var(--dark); font-weight: 600;
font-size: .9rem; text-transform: uppercase; letter-spacing: .06em;
border: 1.5px solid rgba(0,87,255,.35); padding: 1rem 2.4rem;
border-radius: 8px; cursor: pointer; text-decoration: none;
display: inline-block; transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,87,255,.04); }

.btn-call {
background: #16a34a; color: #fff; font-weight: 700;
font-size: .9rem; text-transform: uppercase; letter-spacing: .06em;
border: none; padding: 1rem 2rem; border-radius: 8px;
cursor: pointer; text-decoration: none; display: inline-flex;
align-items: center; gap: .5rem;
transition: background .2s, transform .15s;
}
.btn-call:hover { background: #15803d; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
 REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ═══════════════════════════════════════════════
 NAV
═══════════════════════════════════════════════ */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 1rem 4rem;
background: rgba(255,255,255,.94);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
transition: padding .3s;
}
nav.scrolled { padding: .7rem 4rem; box-shadow: 0 2px 20px rgba(0,87,255,.08); }

.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo .drop-icon {
width: 34px; height: 34px;
background: linear-gradient(135deg, var(--blue), var(--cyan));
border-radius: 8px; display: flex; align-items: center;
justify-content: center; font-size: 1rem;
}
.nav-logo-text {
font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem;
letter-spacing: .08em; color: var(--dark); line-height: 1;
}
.nav-logo-text span { color: var(--blue); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
text-decoration: none; color: var(--muted); font-size: .88rem;
font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
background: linear-gradient(90deg, var(--blue), var(--cyan));
color: #fff; font-weight: 700; font-size: .82rem;
text-transform: uppercase; letter-spacing: .06em;
border: none; padding: .65rem 1.5rem; border-radius: 6px;
cursor: pointer; text-decoration: none;
transition: opacity .2s, transform .15s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* Hamburger mobile */
.nav-hamburger {
display: none; flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
display: block; width: 24px; height: 2px;
background: var(--dark); border-radius: 2px; transition: all .3s;
}

/* ═══════════════════════════════════════════════
 HERO
═══════════════════════════════════════════════ */
#hero {
position: relative; min-height: 100vh;
display: flex; align-items: center;
padding: 7rem 4rem 4rem;
overflow: hidden;
}

.hero-bg {
position: absolute; inset: 0; z-index: 0;
background:
  radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,87,255,.07) 0%, transparent 60%),
  radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0,168,214,.06) 0%, transparent 55%),
  #fff;
}
.ripple {
position: absolute; border-radius: 50%;
border: 1px solid rgba(0,87,255,.1);
animation: ripple 8s ease-out infinite;
}
.ripple:nth-child(1) { width: 600px; height: 600px; top: 10%; right: -10%; animation-delay: 0s; }
.ripple:nth-child(2) { width: 900px; height: 900px; top: -5%; right: -20%; animation-delay: 2s; }
.ripple:nth-child(3) { width: 1200px; height: 1200px; top: -15%; right: -30%; animation-delay: 4s; }
@keyframes ripple {
0%   { transform: scale(.85); opacity: .5; }
50%  { opacity: .2; }
100% { transform: scale(1.05); opacity: 0; }
}

/* Magic UI — Particles (ported to vanilla canvas) */
.hero-particles {
position: absolute; inset: 0; width: 100%; height: 100%;
pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
display: inline-flex; align-items: center; gap: .5rem;
background: rgba(0,87,255,.07); border: 1px solid rgba(0,87,255,.2);
padding: .38rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
font-size: .76rem; font-weight: 600; letter-spacing: .1em;
text-transform: uppercase; color: var(--blue);
animation: fadeUp .6s ease both;
}
.hero-badge .dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--blue); animation: blink 1.5s ease infinite;
}

/* H1 — SEO optimized */
.hero-title {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(3.2rem, 8vw, 6.5rem);
line-height: .95; letter-spacing: .02em;
animation: fadeUp .7s .1s ease both;
color: var(--dark);
}
.hero-title .accent { color: var(--blue); }
.hero-title .stroke {
-webkit-text-stroke: 2px rgba(0,87,255,.35);
color: transparent;
}

/* Subheadline */
.hero-sub {
margin-top: 1.4rem; font-size: 1.1rem;
color: var(--muted); line-height: 1.7; max-width: 540px;
animation: fadeUp .7s .2s ease both;
}

/* Trust row */
.hero-trust {
display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
margin-top: 1.6rem;
animation: fadeUp .7s .25s ease both;
}
.trust-item {
display: flex; align-items: center; gap: .4rem;
font-size: .85rem; font-weight: 600; color: var(--dark);
}
.trust-item .check { color: #16a34a; font-size: 1rem; }

/* Star mini badge */
.hero-rating {
display: inline-flex; align-items: center; gap: .6rem;
background: #fffbeb; border: 1px solid rgba(245,158,11,.3);
border-radius: 8px; padding: .5rem 1rem; margin-top: 1.4rem;
font-size: .84rem; font-weight: 600; color: #92400e;
animation: fadeUp .7s .28s ease both;
cursor: pointer; text-decoration: none; display: inline-flex;
}
.hero-rating:hover { border-color: rgba(245,158,11,.6); }
.hero-rating .stars { color: #f59e0b; letter-spacing: 2px; }

.hero-actions {
display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
animation: fadeUp .7s .3s ease both;
}

.hero-stats {
display: flex; gap: 2.5rem; margin-top: 3.5rem;
flex-wrap: wrap;
animation: fadeUp .7s .4s ease both;
}
.stat-item { border-left: 2px solid var(--blue); padding-left: 1rem; }
.stat-num {
font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
color: var(--dark); line-height: 1;
}
.stat-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ── Magic UI: Animated Shiny Text (badge glare) ── */
.shiny-text {
color: var(--blue);
background: linear-gradient(90deg,
  transparent 0%, transparent 35%,
  rgba(255,255,255,.95) 50%,
  transparent 65%, transparent 100%);
background-size: 120px 100%;
background-repeat: no-repeat;
background-position: -120px 0;
-webkit-background-clip: text;
background-clip: text;
mix-blend-mode: normal;
animation: shiny-text 4s cubic-bezier(.6,.6,0,1) infinite;
}
@keyframes shiny-text {
0%   { background-position: -120px 0; }
55%, 100% { background-position: calc(100% + 120px) 0; }
}

/* ── Magic UI: Aurora Text (accent word) ── */
.aurora-text {
display: inline-block;
background-image: linear-gradient(135deg, #0057ff, #00a8d6, #3b9eff, #0057ff);
background-size: 200% auto;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
animation: aurora 9s ease-in-out infinite;
}
@keyframes aurora {
0%   { background-position: 0% 50%; }
50%  { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* ── Magic UI: Shimmer Button (CTA spark around perimeter) ── */
.btn-shimmer { position: relative; z-index: 0; overflow: hidden; }
.btn-shimmer::before {
content: ''; position: absolute; z-index: -2;
inset: -150%;
background: conic-gradient(from 0deg,
  transparent 0deg,
  rgba(255,255,255,.85) 30deg,
  transparent 70deg);
animation: shimmer-spin 3s linear infinite;
}
.btn-shimmer::after {
content: ''; position: absolute; z-index: -1;
inset: 2px; border-radius: inherit;
background: linear-gradient(90deg, var(--blue), var(--cyan));
}
@keyframes shimmer-spin { to { transform: rotate(360deg); } }

/* ── Reusable particles canvas (quote section) ── */
.particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
#quote .quote-layout { position: relative; z-index: 1; }

/* ── Magic UI: Scroll Progress (global) ── */
#scroll-progress {
position: fixed; top: 0; left: 0; height: 3px; width: 100%;
transform: scaleX(0); transform-origin: 0 50%; z-index: 300;
background: linear-gradient(90deg, var(--blue), var(--cyan));
box-shadow: 0 0 10px rgba(0,87,255,.5);
will-change: transform;
}

/* ── Aurora gradient on every section title accent word ── */
.section-title span {
background-image: linear-gradient(135deg, #0057ff, #00a8d6, #3b9eff, #0057ff);
background-size: 200% auto;
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent; color: transparent;
animation: aurora 9s ease-in-out infinite;
}

/* ── Shiny shimmer on every section label ── */
.section-label {
background: linear-gradient(90deg,
  transparent 0%, transparent 35%,
  rgba(255,255,255,.9) 50%,
  transparent 65%, transparent 100%);
background-size: 90px 100%; background-repeat: no-repeat;
background-position: -90px 0;
-webkit-background-clip: text; background-clip: text;
animation: shiny-text 5s cubic-bezier(.6,.6,0,1) infinite;
}

/* ── Magic UI: Border Beam (cards on hover) ──
 Uses a rotating conic spark behind an opaque backdrop, leaving a thin
 animated ring — GPU-composited via transform (no per-frame repaint). */
.why-card, .why-wash-card, .review-card {
position: relative; z-index: 0; overflow: hidden;
}
.why-card::before, .why-wash-card::before, .review-card::before {
content: ''; position: absolute; z-index: -2; inset: -150%;
pointer-events: none; opacity: 0; transition: opacity .35s;
background: conic-gradient(from 0deg,
  transparent 0deg, var(--blue) 25deg, var(--cyan) 55deg, transparent 90deg);
animation: shimmer-spin 4s linear infinite;
}
.why-card::after, .why-wash-card::after, .review-card::after {
content: ''; position: absolute; z-index: -1; inset: 1.5px;
border-radius: inherit; pointer-events: none;
}
.why-card::after { background: var(--card); }
.why-wash-card::after, .review-card::after { background: #fff; }
.why-card:hover::before, .why-wash-card:hover::before, .review-card:hover::before { opacity: 1; }

/* Process step circles — rotating glow halo behind each number */
.step { position: relative; }
.step-num { position: relative; z-index: 1; }
.step-num::after {
content: ''; position: absolute; z-index: -1; inset: -5px;
border-radius: 50%; pointer-events: none;
background: conic-gradient(from 0deg,
  transparent 0deg, rgba(0,87,255,.65) 45deg, rgba(0,168,214,.65) 90deg, transparent 140deg);
filter: blur(4px);
animation: shimmer-spin 3.6s linear infinite;
}

/* ── Magic UI: Glare Hover on service cards ── */
.service-card::before {
content: ''; position: absolute; top: 0; left: -130%;
width: 75%; height: 100%; z-index: 1; pointer-events: none;
background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
transform: skewX(-18deg); transition: left .65s ease;
}
.service-card:hover::before { left: 150%; }

@media (prefers-reduced-motion: reduce) {
.shiny-text, .aurora-text, .section-title span, .section-label { animation: none; }
.shiny-text, .section-label { background: none; -webkit-text-fill-color: var(--blue); color: var(--blue); }
.section-title span { background: none; -webkit-text-fill-color: var(--blue); color: var(--blue); }
.btn-shimmer::before { animation: none; opacity: 0; }
.why-card::before, .why-wash-card::before, .review-card::before { animation: none; display: none; }
.step-num::after { animation: none; display: none; }
.service-card::before { transition: none; }
}

/* ═══════════════════════════════════════════════
 SOCIAL PROOF BAR (below hero)
═══════════════════════════════════════════════ */
#social-proof {
background: var(--dark); padding: 1.4rem 4rem;
display: flex; align-items: center; justify-content: center;
gap: 3rem; flex-wrap: wrap; z-index: 2;
}
.proof-item {
display: flex; align-items: center; gap: .7rem;
font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.75);
}
.proof-item strong { color: #fff; font-weight: 700; }
.proof-divider { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════════════
 SERVICES
═══════════════════════════════════════════════ */
#services { background: var(--light); }

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5px; margin-top: 3.5rem;
border: 1px solid rgba(0,87,255,.14); border-radius: 16px; overflow: hidden;
}
.service-card {
background: #fff; padding: 2.2rem;
position: relative; overflow: hidden; transition: background .25s;
}
.service-card:hover { background: #f0f4ff; }
.service-card::after {
content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--blue), var(--cyan));
transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-name {
font-family: 'Barlow Condensed', sans-serif;
font-size: 1.3rem; font-weight: 700; letter-spacing: .04em;
text-transform: uppercase; margin-bottom: .6rem; color: var(--dark);
}
.service-desc { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.service-link {
display: inline-flex; align-items: center; gap: .3rem;
margin-top: .9rem; font-size: .82rem; font-weight: 700;
color: var(--blue); text-decoration: none; text-transform: uppercase;
letter-spacing: .06em; transition: gap .2s;
}
.service-link:hover { gap: .6rem; }

/* ═══════════════════════════════════════════════
 BEFORE / AFTER — Interactive Slider
═══════════════════════════════════════════════ */
#before-after { background: #fff; }

.ba-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem; margin-top: 3.5rem;
}
.ba-card {
border-radius: 16px; overflow: hidden;
border: 1px solid var(--border);
box-shadow: 0 2px 12px rgba(0,87,255,.06);
transition: transform .2s, box-shadow .2s;
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ── Slider container ── */
.ba-slider {
position: relative; width: 100%; height: 260px;
overflow: hidden; cursor: col-resize; touch-action: none;
background: #e5e7eb;
user-select: none; -webkit-user-select: none;
}
.ba-slider img {
position: absolute; top: 0; left: 0;
width: 100%; height: 100%; object-fit: cover;
pointer-events: none; display: block;
}
.ba-slider .img-after {
clip-path: inset(0 50% 0 0);
transition: clip-path 0s;
}
/* Label badges */
.ba-label {
position: absolute; top: .7rem; z-index: 4;
font-family: 'Bebas Neue', sans-serif; font-size: .85rem;
letter-spacing: .1em; padding: .25rem .7rem;
border-radius: 4px; pointer-events: none;
}
.ba-label.before-lbl {
right: .7rem; background: rgba(0,0,0,.55); color: #fff;
}
.ba-label.after-lbl {
left: .7rem; background: var(--blue); color: #fff;
}
/* Divider line + handle */
.ba-handle {
position: absolute; top: 0; bottom: 0; width: 3px;
background: #fff; left: 50%; transform: translateX(-50%);
z-index: 5; pointer-events: none;
box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle::before {
content: ''; position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 38px; height: 38px; border-radius: 50%;
background: #fff; border: 3px solid var(--blue);
box-shadow: 0 2px 12px rgba(0,87,255,.3);
}
.ba-handle::after {
content: '◀ ▶'; position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
font-size: .55rem; color: var(--blue); letter-spacing: 2px;
line-height: 1; white-space: nowrap;
}
/* Placeholder when no image set */
.ba-placeholder {
position: absolute; inset: 0; display: flex;
flex-direction: column; align-items: center; justify-content: center;
gap: .5rem; background: var(--light);
font-size: .85rem; color: var(--muted); text-align: center;
padding: 1rem;
}
.ba-placeholder .ph-icon { font-size: 2rem; }
.ba-placeholder strong { color: var(--blue); font-size: .8rem; display: block; }

.ba-info { padding: 1.1rem 1.4rem; background: #fff; }
.ba-title {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em;
color: var(--dark); margin-bottom: .25rem;
}
.ba-caption { font-size: .83rem; color: var(--muted); }
.ba-cta { text-align: center; margin-top: 3rem; }

/* Hide real images and show placeholder when src is empty */
.ba-slider img[src=""] { display: none; }
.ba-slider:has(img[src=""]) .ba-placeholder { display: flex; }
.ba-slider:not(:has(img[src=""])) .ba-placeholder { display: none; }
.ba-slider:has(img[src=""]) .ba-handle { display: none; }
.ba-slider:has(img[src=""]) .ba-label { display: none; }
/* Fallback for browsers without :has() */
.ba-slider.no-img .ba-placeholder { display: flex !important; }
.ba-slider.no-img .ba-handle { display: none; }
.ba-slider.no-img .ba-label { display: none; }

/* Setup instructions box */
.ba-setup-note {
background: #eff6ff; border: 1px solid rgba(0,87,255,.2);
border-radius: 12px; padding: 1.4rem 1.8rem;
margin-bottom: 2.5rem; font-size: .9rem; color: var(--dark);
display: flex; gap: 1rem; align-items: flex-start;
}
.ba-setup-note .note-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.ba-setup-note ol { margin: .5rem 0 0 1.2rem; line-height: 2; color: var(--muted); }
.ba-setup-note strong { color: var(--blue); }
.ba-setup-note code {
background: rgba(0,87,255,.08); padding: .1rem .4rem;
border-radius: 4px; font-size: .82rem; color: var(--blue);
}

/* ═══════════════════════════════════════════════
 WHY PRESSURE WASHING
═══════════════════════════════════════════════ */
#why-wash { background: var(--light); }
.why-wash-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1.8rem; margin-top: 3.5rem;
}
.why-wash-card {
background: #fff; border: 1px solid var(--border);
border-radius: 14px; padding: 2rem;
transition: border-color .25s, transform .2s;
}
.why-wash-card:hover { border-color: rgba(0,87,255,.35); transform: translateY(-3px); }
.why-wash-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.why-wash-title {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em;
margin-bottom: .5rem; color: var(--dark);
}
.why-wash-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
 HOW IT WORKS
═══════════════════════════════════════════════ */
#process { background: #fff; }
.process-steps {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 2rem; margin-top: 3.5rem; position: relative;
}
.process-steps::before {
content: ''; position: absolute; top: 2.4rem; left: 12.5%; right: 12.5%; height: 1px;
background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.step { text-align: center; }
.step-num {
width: 50px; height: 50px; border-radius: 50%;
background: linear-gradient(135deg, var(--blue), var(--cyan));
display: flex; align-items: center; justify-content: center;
margin: 0 auto 1.3rem;
font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #fff;
box-shadow: 0 0 20px rgba(0,87,255,.25);
}
.step-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .06em; margin-bottom: .5rem; color: var(--dark);
}
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════
 SERVICE AREA
═══════════════════════════════════════════════ */
#area { background: var(--light); }
.area-layout {
display: grid; grid-template-columns: 1fr 1fr;
gap: 4rem; align-items: center; margin-top: 3.5rem;
}
.area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1rem; }
.area-list li {
display: flex; align-items: center; gap: .6rem;
font-size: .95rem; font-weight: 500; color: var(--dark);
}
.area-list li::before { content: '→'; color: var(--blue); font-weight: 700; }
.area-note {
margin-top: 1.5rem; font-size: .9rem; color: var(--muted);
font-style: italic;
}
.area-note a { color: var(--blue); text-decoration: none; }
.area-note a:hover { text-decoration: underline; }
.area-map {
background: #f0f4ff; border: 1px solid var(--border);
border-radius: 16px; overflow: hidden;
position: relative;
box-shadow: 0 4px 24px rgba(0,87,255,.08);
}
#coverage-map { display: block; width: 100%; height: auto; }
/* Hover tooltip on city dots */
#coverage-map circle:hover { cursor: pointer; filter: drop-shadow(0 0 6px rgba(0,87,255,.5)); }

/* ═══════════════════════════════════════════════
 WHY US
═══════════════════════════════════════════════ */
#why { background: #fff; }
.why-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 1.8rem; margin-top: 3.5rem;
}
.why-card {
background: var(--card); border: 1px solid rgba(0,87,255,.1);
border-radius: 14px; padding: 2rem;
transition: border-color .25s, transform .2s;
}
.why-card:hover { border-color: rgba(0,87,255,.3); transform: translateY(-3px); }
.why-icon { font-size: 1.9rem; margin-bottom: .9rem; display: block; }
.why-title {
font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
font-size: 1.1rem; text-transform: uppercase; letter-spacing: .05em;
margin-bottom: .5rem; color: var(--dark);
}
.why-desc { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
 TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonials { background: var(--light); }
.reviews-header {
display: flex; align-items: flex-end; justify-content: space-between;
flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem;
}
.reviews-aggregate { display: flex; align-items: center; gap: 1.2rem; }
.aggregate-score {
font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem;
color: var(--dark); line-height: 1;
}
.aggregate-details { display: flex; flex-direction: column; gap: .2rem; }
.stars-row { display: flex; gap: 2px; }
.star { color: #f59e0b; font-size: 1.2rem; }
.aggregate-count { font-size: .82rem; color: var(--muted); }
.google-badge {
display: flex; align-items: center; gap: .5rem;
background: #fff; border: 1px solid var(--border);
border-radius: 8px; padding: .55rem 1rem;
font-size: .82rem; font-weight: 600; color: var(--muted);
text-decoration: none; transition: border-color .2s;
}
.google-badge:hover { border-color: rgba(0,87,255,.4); }
.google-badge svg { width: 16px; height: 16px; }

.reviews-track-wrapper { overflow: hidden; position: relative; }
.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.reviews-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.reviews-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.reviews-track {
display: flex; gap: 1.4rem;
animation: scroll-reviews 40s linear infinite; width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-reviews {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.review-card {
background: #fff; border: 1px solid rgba(0,87,255,.1);
border-radius: 14px; padding: 1.6rem 1.8rem;
width: 310px; flex-shrink: 0;
transition: border-color .25s, transform .2s, box-shadow .2s;
}
.review-card:hover { border-color: rgba(0,87,255,.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.review-top { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.reviewer-avatar {
width: 42px; height: 42px; border-radius: 50%;
background: linear-gradient(135deg, var(--blue), var(--cyan));
display: flex; align-items: center; justify-content: center;
font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: #fff;
flex-shrink: 0; overflow: hidden;
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.reviewer-name { font-weight: 700; font-size: .92rem; color: var(--dark); }
.reviewer-date { font-size: .74rem; color: var(--muted); margin-top: .1rem; }
.review-stars { display: flex; gap: 2px; margin-bottom: .75rem; }
.review-stars .star { font-size: .95rem; }
.review-text {
font-size: .9rem; color: #374151; line-height: 1.6;
display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.reviews-loading { text-align: center; padding: 3rem; color: var(--muted); }
.reviews-loading .spinner {
width: 34px; height: 34px; border: 3px solid rgba(0,87,255,.15);
border-top-color: var(--blue); border-radius: 50%;
animation: spin .8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
 FAQ
═══════════════════════════════════════════════ */
#faq { background: #fff; }
.faq-list { max-width: 820px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(0,87,255,.3); }
.faq-question {
display: flex; justify-content: space-between; align-items: center;
padding: 1.3rem 1.6rem; cursor: pointer;
font-weight: 600; font-size: 1rem; color: var(--dark);
background: #fff; user-select: none; gap: 1rem;
transition: background .2s;
}
.faq-question:hover { background: var(--card); }
.faq-icon {
width: 28px; height: 28px; border-radius: 50%;
background: var(--light); border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
font-size: 1.1rem; flex-shrink: 0; transition: transform .3s, background .2s;
color: var(--blue);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-answer {
max-height: 0; overflow: hidden;
transition: max-height .35s ease, padding .3s ease;
font-size: .95rem; color: var(--muted); line-height: 1.7;
padding: 0 1.6rem; background: #fff;
}
.faq-item.open .faq-answer { max-height: 200px; padding: .2rem 1.6rem 1.4rem; }

/* ═══════════════════════════════════════════════
 QUOTE FORM
═══════════════════════════════════════════════ */
#quote {
background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 50%, #f0f4ff 100%);
border-top: 1px solid var(--border);
}
.quote-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.quote-info { padding-top: 1rem; }
.quote-info p { color: var(--muted); line-height: 1.7; margin-top: 1rem; font-size: 1rem; }
.response-note {
display: flex; align-items: center; gap: .5rem;
margin-top: 1.2rem; font-size: .85rem; color: #16a34a; font-weight: 600;
}
.quote-contact { margin-top: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.contact-row { display: flex; align-items: center; gap: .8rem; font-size: .93rem; color: var(--dark); }
.contact-row .icon { font-size: 1.1rem; }
.contact-row a { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
label {
font-size: .74rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .1em; color: var(--muted);
}
input, select, textarea {
width: 100%; background: #fff;
border: 1.5px solid rgba(0,87,255,.18); border-radius: 8px;
padding: .82rem 1rem; color: var(--dark); font-family: 'Barlow', sans-serif;
font-size: .95rem; outline: none;
transition: border-color .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: rgba(74,85,104,.4); }
input:focus, select:focus, textarea:focus {
border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,255,.1);
}
select option { background: #fff; color: var(--dark); }
textarea { min-height: 100px; resize: vertical; }
.form-submit {
width: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan));
color: #fff; font-weight: 700; font-size: .95rem;
text-transform: uppercase; letter-spacing: .06em;
border: none; padding: 1.1rem; border-radius: 8px;
cursor: pointer; margin-top: .5rem;
box-shadow: 0 0 28px rgba(0,87,255,.3);
transition: opacity .2s, transform .15s;
}
.form-submit:hover { opacity: .88; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
 TRUST BAR
═══════════════════════════════════════════════ */
#trust-bar {
background: var(--dark); padding: 2.5rem 4rem;
display: flex; align-items: center; justify-content: center;
gap: 3rem; flex-wrap: wrap;
}
.trust-badge {
display: flex; align-items: center; gap: .7rem;
font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.trust-badge .badge-icon { font-size: 1.4rem; }
.trust-badge strong { color: #fff; }

/* ═══════════════════════════════════════════════
 FOOTER
═══════════════════════════════════════════════ */
footer {
background: var(--light); padding: 2.5rem 4rem;
border-top: 1px solid var(--border);
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem;
letter-spacing: .08em; color: var(--dark);
}
.footer-logo span { color: var(--blue); }
.footer-info { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.footer-info strong { color: var(--dark); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
font-size: .8rem; color: var(--muted); text-decoration: none;
transition: color .2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-legal { font-size: .74rem; color: rgba(74,85,104,.6); margin-top: .4rem; }

/* ═══════════════════════════════════════════════
 STICKY MOBILE CTA
═══════════════════════════════════════════════ */
.mobile-cta {
display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
display: none; grid-template-columns: 1fr 1fr;
box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mobile-cta-call {
background: #16a34a; color: #fff; border: none;
padding: 1.1rem; font-family: 'Barlow', sans-serif;
font-size: .9rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .04em; cursor: pointer; text-decoration: none;
display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.mobile-cta-quote {
background: linear-gradient(90deg, var(--blue), var(--cyan));
color: #fff; border: none; padding: 1.1rem;
font-family: 'Barlow', sans-serif;
font-size: .9rem; font-weight: 700; text-transform: uppercase;
letter-spacing: .04em; cursor: pointer; text-decoration: none;
display: flex; align-items: center; justify-content: center; gap: .4rem;
}

/* ═══════════════════════════════════════════════
 TOAST
═══════════════════════════════════════════════ */
#toast {
position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
background: #16a34a; color: #fff; padding: 1rem 1.6rem;
border-radius: 10px; font-weight: 600; font-size: .95rem;
transform: translateY(100px); opacity: 0;
transition: transform .4s ease, opacity .4s ease;
box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════
 RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
section { padding: 5rem 2.5rem; }
nav { padding: 1rem 2rem; }
.nav-links { gap: 1.5rem; }
.area-layout, .quote-layout { grid-template-columns: 1fr; gap: 2.5rem; }
.why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
section { padding: 4rem 1.4rem; }
nav { padding: .9rem 1.4rem; }
#hero { padding: 6rem 1.4rem 3rem; }
#social-proof { padding: 1.2rem 1.4rem; gap: 1.2rem; flex-direction: column; }
.proof-divider { display: none; }

.nav-links { display: none; }
.nav-hamburger { display: flex; }

/* Mobile nav open */
.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: 56px; left: 0; right: 0;
  background: rgba(255,255,255,.98); padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border); z-index: 190;
  gap: 1.2rem;
}

.hero-title { font-size: clamp(3rem, 12vw, 5rem); }
.hero-stats { gap: 1.5rem; }
.process-steps { grid-template-columns: repeat(2, 1fr); }
.process-steps::before { display: none; }
.why-grid { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.ba-grid { grid-template-columns: 1fr; }
.why-wash-grid { grid-template-columns: 1fr 1fr; }
.area-list { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
footer { flex-direction: column; text-align: center; padding: 2rem 1.4rem; }
#trust-bar { padding: 2rem 1.4rem; gap: 1.5rem; }

/* Show mobile sticky CTA */
.mobile-cta { display: grid; }

/* Add bottom padding so content doesn't hide behind sticky bar */
body { padding-bottom: 58px; }
}

@media (max-width: 480px) {
.hero-trust { gap: .4rem .9rem; }
.reviews-header { flex-direction: column; align-items: flex-start; }
.why-wash-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════
   SUB-PAGE HELPERS (service / location landing pages)
═══════════════════════════════════════════════ */
.subpage-hero { padding-top: 7.5rem; padding-bottom: 2rem; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--dark); font-weight: 600; }
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1;
  letter-spacing: .02em; color: var(--dark);
}
.page-title span { color: var(--blue); }
.page-lead { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 720px; margin-top: 1rem; }
.prose { max-width: 760px; }
.prose h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: .02em; color: var(--dark); margin: 2.2rem 0 .7rem; line-height: 1.05; }
.prose h2 span { color: var(--blue); }
.prose h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; color: var(--dark); margin: 1.4rem 0 .4rem; }
.prose p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.2rem; color: var(--muted); line-height: 1.7; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--blue); text-decoration: none; font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.related-services { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.related-services a {
  display: inline-block; padding: .5rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .85rem; font-weight: 600; color: var(--blue);
  text-decoration: none; background: var(--card); transition: border-color .2s, background .2s;
}
.related-services a:hover { border-color: var(--blue); background: rgba(0,87,255,.05); }

.area-list a { color: var(--dark); text-decoration: none; transition: color .2s; }
.area-list a:hover { color: var(--blue); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   PRICING TABLE (in .prose) + BLOG
═══════════════════════════════════════════════ */
.prose table {
  width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem;
  font-size: .98rem;
}
.prose thead th {
  text-align: left; background: var(--light); color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  letter-spacing: .04em; font-size: .9rem; padding: .7rem 1rem;
  border-bottom: 2px solid var(--border);
}
.prose tbody td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--dark); }
.prose tbody tr:nth-child(even) { background: var(--card); }
.prose tbody td:last-child { font-weight: 700; color: var(--blue); white-space: nowrap; }
.prose tbody td a { font-weight: 600; }

/* Blog post meta line */
.post-meta {
  font-size: .85rem; color: var(--muted); margin-top: .6rem;
  text-transform: uppercase; letter-spacing: .04em; font-weight: 600;
}

/* Blog index grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem; margin-top: 1rem;
}
.blog-card {
  display: block; text-decoration: none; background: var(--card);
  border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem 1.8rem;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.blog-card:hover { border-color: rgba(0,87,255,.35); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-meta { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); margin-bottom: .5rem; }
.blog-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: .6rem; }
.blog-card-excerpt { font-size: .92rem; color: var(--muted); line-height: 1.6; margin-bottom: .9rem; }
.blog-card-link { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); }

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .prose table { font-size: .9rem; }
  .prose thead th, .prose tbody td { padding: .55rem .7rem; }
}
