:root {
    --navy: #142b50;
    --deep: #08172f;
    --aqua: #294e7d;
    --aqua-2: #a8c8ef;
    --green: #94b9eb;
    --mint: #edf2fa;
    --sky: #eaf0fa;
    --paper: #ffffff;
    --ink: #192d49;
    --muted: #62738a;
    --line: #dce4ef;
    --shadow: 0 24px 70px rgba(8,23,47, .14);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', Arial, sans-serif;
    color: var(--ink);
    background: #f8faff;
    line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }

.service-bar {
    background: var(--deep);
    color: rgba(255,255,255,.78);
    font-size: 13px;
}
.service-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}
.service-bar i { color: var(--aqua-2); margin-right: 6px; }

.site-head {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(20,43,80,.08);
    backdrop-filter: blur(18px);
}
.head-grid {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo img { width: 140px; height: auto; }
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20,43,80,.06);
}
.nav a {
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}
.nav a:hover, .nav a.is-active { background: var(--mint); color: #234975; }
.nav .nav-offer { background: var(--aqua); color: #fff; box-shadow: 0 10px 24px rgba(41,78,125,.24); }
.menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.menu-btn span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); border-radius: 9px; transition: transform .24s ease, opacity .24s ease; }
.menu-backdrop, .mobile-nav-head, .mobile-nav-status, .mobile-nav-close { display: none; }

.wash-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 720px;
    padding: 88px 0 74px;
    background:
        radial-gradient(circle at 8% 22%, rgba(168,200,239,.35), transparent 26%),
        linear-gradient(135deg, #09172f 0%, #15315a 45%, #294b78 105%);
    color: #fff;
}
.wash-foam {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.2) 0 7px, transparent 8px),
        radial-gradient(circle at 84% 28%, rgba(255,255,255,.16) 0 13px, transparent 14px),
        radial-gradient(circle at 70% 46%, rgba(255,255,255,.14) 0 9px, transparent 10px),
        linear-gradient(180deg, transparent 74%, rgba(255,255,255,.16));
}
.wash-hero::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -70px;
    height: 180px;
    background: #f8faff;
    border-radius: 50% 50% 0 0 / 48% 48% 0 0;
}
.wash-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 58px;
}
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--aqua-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.mini-label::before { content: ''; width: 30px; height: 2px; border-radius: 10px; background: currentColor; }
h1, h2, h3 { margin: 0 0 16px; line-height: 1.08; letter-spacing: -.02em; }
h1 { max-width: 760px; font-size: clamp(42px, 5.4vw, 78px); }
h2 { font-size: clamp(30px, 3.2vw, 50px); color: var(--navy); }
h3 { font-size: 22px; color: var(--navy); }
p { margin: 0 0 20px; color: var(--muted); }
.wash-hero p { max-width: 640px; color: rgba(255,255,255,.78); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(8,23,47,.18); }
.btn-primary { background: linear-gradient(135deg, var(--green), #c5daf6); color: #102343; }
.btn-ghost { border-color: rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--navy); }
.wash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
}
.wash-stats div {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
}
.wash-stats strong, .wash-stats span { display: block; }
.wash-stats strong { font-size: 22px; }
.wash-stats span { color: rgba(255,255,255,.65); font-size: 13px; }
.wash-hero__photo { position: relative; }
.wash-hero__photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 34px;
    border: 10px solid rgba(255,255,255,.14);
    box-shadow: 0 36px 90px rgba(0,0,0,.34);
}
.pickup-card {
    position: absolute;
    left: -24px;
    bottom: 34px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 14px;
    align-items: center;
    width: min(320px, 84%);
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    color: var(--navy);
    box-shadow: var(--shadow);
}
.pickup-card i { grid-row: span 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--mint); color: var(--aqua); font-size: 24px; }
.pickup-card span { color: var(--muted); font-size: 13px; }

.quick-quote { position: relative; z-index: 3; margin-top: 34px; }
.quick-quote__grid {
    display: grid;
    grid-template-columns: .75fr .75fr 1.3fr;
    gap: 12px;
    align-items: stretch;
}
.quick-quote__grid > * {
    min-height: 96px;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(20,43,80,.1);
}
.quick-quote span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.quick-quote strong { display: block; margin-top: 7px; color: var(--navy); font-size: 22px; }
.quick-quote a { display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-weight: 900; }

.section { padding: 94px 0; }
.section-title { max-width: 800px; margin-bottom: 38px; }
.section-title p { max-width: 620px; font-size: 17px; }
.service-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-tile {
    min-height: 340px;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 8px 28px rgba(20,43,80,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-tile:hover { transform: translateY(-8px); border-color: rgba(41,78,125,.45); box-shadow: var(--shadow); }
.service-tile > i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--mint), #fff);
    color: var(--aqua);
    font-size: 25px;
}
.service-tile span { color: var(--aqua); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.service-tile p { font-size: 15px; }
.service-tile b { display: inline-flex; gap: 9px; align-items: center; margin-top: 12px; color: var(--navy); }

.wash-process {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: linear-gradient(135deg, var(--mint), var(--sky));
}
.wash-process::before {
    content: '';
    position: absolute;
    inset: auto -10% -90px;
    height: 210px;
    background: rgba(255,255,255,.55);
    border-radius: 50% 50% 0 0;
}
.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 42px;
    align-items: start;
}
.process-steps {
    counter-reset: item;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.process-steps li {
    min-height: 180px;
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(41,78,125,.2);
}
.process-steps span { color: var(--aqua); font-weight: 900; letter-spacing: .12em; }
.process-steps strong { display: block; margin: 12px 0 7px; color: var(--navy); font-size: 23px; }

.local-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(168,200,239,.2), transparent 28%),
        linear-gradient(180deg, #f8faff, #edf2fa);
}
.local-section::before {
    content: '';
    position: absolute;
    inset: 18px auto auto 50%;
    width: min(560px, 45vw);
    height: min(560px, 45vw);
    border: 1px solid rgba(41,78,125,.14);
    border-radius: 50%;
    transform: translateX(-8%);
}
.local-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: center; }
.local-copy p { max-width: 620px; font-size: 17px; }
.local-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.local-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border: 1px solid rgba(41,78,125,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(20,43,80,.06);
}
.local-highlights i { color: var(--aqua); }
.coverage-panel {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(41,78,125,.2);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
        radial-gradient(circle at 86% 18%, rgba(168,200,239,.34), transparent 30%);
    box-shadow: var(--shadow);
}
.coverage-panel::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 26px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41,78,125,.16), rgba(148,185,235,.18));
}
.coverage-panel__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 22px;
}
.coverage-panel__head i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--mint);
    color: var(--aqua);
    font-size: 24px;
}
.coverage-panel__head strong { display: block; color: var(--navy); font-size: 20px; }
.coverage-panel__head small { color: var(--muted); font-weight: 800; }
.districts { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; }
.districts span {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--navy);
    font-weight: 900;
}
.coverage-phone {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--deep), #234571);
    color: #fff;
    font-weight: 900;
}
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { cursor: pointer; color: var(--navy); font-size: 18px; font-weight: 900; }
.faq-list p { margin-top: 12px; }

.page-hero {
    padding: 86px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(168,200,239,.25), transparent 26%),
        linear-gradient(135deg, var(--deep), #234571);
}
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; }
.service-list { display: grid; gap: 18px; }
.service-list article {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 22px;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #fff;
}
.service-list article > i, .big-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--mint);
    color: var(--aqua);
    font-size: 34px;
}
.service-list span { color: var(--aqua); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.service-list a { color: var(--navy); font-weight: 900; }
.service-page__grid { display: grid; grid-template-columns: 1fr 180px; gap: 28px; align-items: center; }
.big-icon { width: 160px; height: 160px; font-size: 64px; background: rgba(255,255,255,.14); color: var(--aqua-2); border: 1px solid rgba(255,255,255,.2); }
.detail-layout, .offer-grid, .contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; align-items: start; }
.detail-card, .side-offer, .offer-form, .offer-note {
    padding: 30px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 8px 30px rgba(20,43,80,.06);
}
.clean-checks { list-style: none; margin: 24px 0; padding: 0; }
.clean-checks li { position: relative; margin: 13px 0; padding-left: 32px; }
.clean-checks li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--aqua); font-weight: 900; }
.phone-big { display: block; margin-top: 18px; color: var(--navy); font-size: 27px; font-weight: 900; }
.timeline-row {
    display: grid;
    grid-template-columns: 90px .55fr 1fr;
    gap: 22px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.timeline-row span { color: var(--aqua); font-weight: 900; font-size: 24px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-grid article { padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: #fff; }
.guide-grid span { color: var(--aqua); font-weight: 900; text-transform: uppercase; font-size: 12px; }

.offer-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.offer-form label { color: var(--navy); font-weight: 900; }
.offer-form textarea, .offer-form button { grid-column: 1 / -1; }
input, select, textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8faff;
    color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 4px solid rgba(41,78,125,.12); border-color: var(--aqua); }
.offer-note > i { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: var(--mint); color: var(--aqua); font-size: 30px; }
.contact-layout iframe { width: 100%; height: 430px; border: 0; border-radius: 26px; box-shadow: var(--shadow); }
.contact-cards { display: grid; gap: 14px; }
.contact-cards a { display: grid; grid-template-columns: 56px 1fr; gap: 2px 16px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.contact-cards i { grid-row: span 2; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); color: var(--aqua); font-size: 23px; }
.contact-cards span { color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.contact-cards strong { color: var(--navy); }

.quote-ribbon { padding: 54px 0; background: linear-gradient(135deg, var(--aqua), #234571); color: #fff; }
.quote-ribbon__grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.quote-ribbon h2 { max-width: 820px; margin: 0; color: #fff; }
.footer { padding: 64px 0 24px; background: var(--deep); color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 32px; }
.footer img { width: 250px; margin-bottom: 16px; }
.footer h3 { color: #fff; }
.footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.76); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; font-size: 32px; box-shadow: 0 18px 35px rgba(37,211,102,.32); }

@media (max-width: 980px) {
    .site-head {
        z-index: 120;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .menu-btn {
        position: relative;
        z-index: 112;
        display: grid;
        place-items: center;
        box-shadow: 0 14px 34px rgba(20,43,80,.12);
    }
    .menu-btn span { margin: 0; grid-area: 1 / 1; }
    .menu-btn span:nth-child(1) { transform: translateY(-7px); }
    .menu-btn span:nth-child(3) { transform: translateY(7px); }
    .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
    .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
    .menu-btn[aria-expanded="true"] {
        opacity: 0;
        pointer-events: none;
    }
    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 119;
        border: 0;
        background: rgba(4, 25, 40, .58);
        backdrop-filter: blur(7px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }
    .menu-backdrop.is-visible {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 120;
        width: min(390px, 88vw);
        height: 100vh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 26px 20px calc(28px + env(safe-area-inset-bottom));
        overflow-y: auto;
        border: 1px solid rgba(168,200,239,.22);
        border-right: 0;
        border-radius: 28px 0 0 28px;
        background:
            radial-gradient(circle at 12% 8%, rgba(168,200,239,.28), transparent 28%),
            radial-gradient(circle at 92% 28%, rgba(148,185,235,.18), transparent 32%),
            linear-gradient(155deg, rgba(8,23,47,.98), rgba(20,44,79,.96) 56%, rgba(35,65,105,.94));
        box-shadow: -34px 0 90px rgba(2, 23, 37, .38);
        transform: translateX(108%);
        visibility: hidden;
        transition: transform .36s cubic-bezier(.2,.9,.2,1), visibility .36s ease;
    }
    .nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }
    .nav::before, .nav::after {
        content: '';
        position: absolute;
        pointer-events: none;
        border-radius: 999px;
        background: rgba(255,255,255,.18);
        filter: blur(.2px);
        animation: menuBubble 7s ease-in-out infinite;
    }
    .nav::before { width: 74px; height: 74px; right: 28px; top: 118px; }
    .nav::after { width: 38px; height: 38px; left: 28px; bottom: 92px; animation-delay: -2.5s; }
    .mobile-nav-head {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 10px;
    }
    .mobile-nav-head img { width: 214px; height: auto; filter: drop-shadow(0 10px 22px rgba(0,0,0,.22)); }
    .mobile-nav-close {
        display: grid;
        place-items: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 50%;
        background: transparent;
        color: #fff;
        cursor: pointer;
        font-size: 25px;
    }
    .mobile-nav-close:hover { background: rgba(255,255,255,.1); }
    .mobile-nav-status {
        position: relative;
        z-index: 1;
        display: block;
        margin-bottom: 8px;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 20px;
        background: rgba(255,255,255,.1);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }
    .mobile-nav-status span, .mobile-nav-status small { display: block; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 800; }
    .mobile-nav-status a {
        display: block;
        min-height: auto;
        margin: 5px 0 3px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: #fff;
        font-size: 23px;
        line-height: 1.15;
    }
    .mobile-nav-status a::after { content: none; }
    .nav > a {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 15px 17px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        background: rgba(255,255,255,.08);
        color: #fff;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    }
    .nav > a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--aqua-2);
        font-size: 12px;
    }
    .nav > a:hover, .nav > a.is-active {
        background: rgba(237,242,250,.17);
        color: #fff;
    }
    .nav .nav-offer {
        justify-content: center;
        gap: 10px;
        min-height: 60px;
        margin-top: auto;
        border: 0;
        border-radius: 18px;
        background: linear-gradient(135deg, #25d366, var(--aqua));
        color: #fff;
        box-shadow: 0 18px 34px rgba(4, 29, 43, .25);
    }
    .nav .nav-offer::after {
        content: '\f232';
        font-family: 'Font Awesome 6 Brands';
        font-weight: 400;
        color: #fff;
        font-size: 18px;
    }
    .wash-hero__grid, .process-grid, .local-grid, .faq-grid, .detail-layout, .offer-grid, .contact-layout { grid-template-columns: 1fr; }
    .service-tiles { grid-template-columns: repeat(2, 1fr); }
    .quick-quote__grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .service-bar__inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
    .logo img { width: 215px; }
    .nav {
        width: min(346px, 91vw);
        padding: 22px 16px calc(24px + env(safe-area-inset-bottom));
        border-radius: 24px 0 0 24px;
    }
    .mobile-nav-head img { width: 196px; }
    .mobile-nav-status a { font-size: 21px; }
    .wash-hero { padding-top: 54px; min-height: auto; }
    .wash-hero__photo img { height: 330px; border-radius: 24px; }
    .pickup-card { left: 12px; bottom: 14px; }
    .wash-stats, .service-tiles, .process-steps, .service-list article, .service-page__grid, .guide-grid, .offer-form, .timeline-row, .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 62px 0; }
    .quote-ribbon__grid, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@keyframes menuBubble {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .62; }
    50% { transform: translate3d(-12px,18px,0) scale(1.08); opacity: .34; }
}

/* Premium animated cleaning hero */
.premium-hero {
    min-height: 770px;
    padding: 104px 0 0;
    background: #08152d;
}
.premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(105deg, rgba(6,16,35, .96) 0%, rgba(14,31,60, .9) 36%, rgba(30,58,98, .74) 100%),
        url('../img/hero-clean-home.png') right center / min(56vw, 930px) 100% no-repeat;
    transform: scale(1.03);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
.premium-hero::after {
    height: 118px;
    bottom: -58px;
    background: #f8faff;
    box-shadow: 0 -24px 60px rgba(255,255,255,.08);
}
.premium-hero .wash-foam {
    z-index: -2;
    opacity: .78;
    background:
        radial-gradient(circle at 12% 76%, rgba(255,255,255,.16) 0 11px, transparent 12px),
        radial-gradient(circle at 48% 18%, rgba(255,255,255,.14) 0 8px, transparent 9px),
        radial-gradient(circle at 86% 38%, rgba(255,255,255,.2) 0 14px, transparent 15px),
        linear-gradient(90deg, rgba(168,200,239,.13), transparent 45%);
}
.premium-hero .wash-hero__grid {
    min-height: 615px;
    grid-template-columns: minmax(0, .95fr) minmax(430px, .9fr);
    gap: clamp(34px, 6vw, 84px);
}
.hero-copy-animated {
    animation: copyRise .82s ease-out both;
}
.premium-hero h1 {
    max-width: 720px;
    min-height: 185px;
    font-size: clamp(48px, 5.15vw, 82px);
    line-height: .98;
}
.headline-kicker {
    display: block;
    color: rgba(255,255,255,.74);
    font-size: .45em;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.type-line {
    display: inline;
    color: #fff;
    text-shadow: 0 18px 44px rgba(0,0,0,.2);
}
.type-line::after {
    content: '';
    display: inline-block;
    width: .075em;
    height: .78em;
    margin-left: 7px;
    border-radius: 4px;
    background: var(--aqua-2);
    vertical-align: -.07em;
    animation: caretBlink .82s steps(2, jump-none) infinite;
}
.premium-hero p {
    max-width: 610px;
    color: rgba(255,255,255,.78);
    font-size: 19px;
}
.clean-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.clean-tags span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}
.clean-tags i { color: var(--aqua-2); }
.premium-photo {
    animation: photoFloatIn .95s .12s ease-out both;
}
.premium-photo img {
    height: 520px;
    border-radius: 44px 44px 120px 44px;
    border: 1px solid rgba(255,255,255,.25);
    outline: 10px solid rgba(255,255,255,.08);
    box-shadow: 0 36px 100px rgba(0,0,0,.38);
    transform: rotate(-1.4deg);
}
.premium-photo::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 36px 36px 108px 36px;
    background: linear-gradient(105deg, rgba(255,255,255,.38), transparent 32%, transparent 70%, rgba(255,255,255,.16));
    pointer-events: none;
    mix-blend-mode: screen;
}
.photo-orbit {
    position: absolute;
    z-index: -1;
    inset: -36px -30px auto auto;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(168,200,239,.3);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(168,200,239,.05), 0 0 0 62px rgba(168,200,239,.03);
    animation: spinSoft 18s linear infinite;
}
.glass-pickup {
    left: -34px;
    bottom: 42px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(16px);
}
.clean-score {
    position: absolute;
    right: -16px;
    top: 48px;
    width: 138px;
    height: 138px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 38px;
    background: rgba(6, 31, 52, .68);
    border: 1px solid rgba(168,200,239,.35);
    color: #fff;
    box-shadow: 0 22px 50px rgba(0,0,0,.22);
    backdrop-filter: blur(15px);
    animation: scoreBob 5s ease-in-out infinite;
}
.clean-score strong { color: var(--aqua-2); font-size: 34px; line-height: 1; }
.clean-score span { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.hero-service-strip {
    position: relative;
    z-index: 5;
    margin-top: -2px;
    background: rgba(3, 23, 39, .56);
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    margin-bottom: 36px;
}
.hero-service-strip__inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hero-service-strip a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-left: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-weight: 900;
}
.hero-service-strip a:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.hero-service-strip i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(168,200,239,.13);
    color: var(--aqua-2);
}
.hero-service-strip a:hover { background: rgba(255,255,255,.08); }
.hero-ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.foam-dot,
.dust-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
}
.foam-dot {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 34% 28%, #fff, rgba(255,255,255,.42) 45%, rgba(168,200,239,.12) 70%);
    box-shadow: inset 0 0 9px rgba(255,255,255,.55), 0 0 24px rgba(168,200,239,.24);
    animation: foamRise 10s ease-in-out infinite;
}
.foam-dot:nth-child(1) { left: 9%; bottom: 12%; width: 20px; height: 20px; animation-duration: 11s; }
.foam-dot:nth-child(2) { left: 24%; bottom: 4%; width: 11px; height: 11px; animation-delay: -4s; animation-duration: 9s; }
.foam-dot:nth-child(3) { left: 41%; bottom: 20%; width: 28px; height: 28px; animation-delay: -2s; animation-duration: 13s; }
.foam-dot:nth-child(4) { left: 68%; bottom: 10%; width: 16px; height: 16px; animation-delay: -6s; animation-duration: 10s; }
.foam-dot:nth-child(5) { right: 12%; bottom: 18%; width: 35px; height: 35px; animation-delay: -3s; animation-duration: 14s; }
.foam-dot:nth-child(6) { right: 22%; top: 24%; width: 14px; height: 14px; animation-delay: -7s; animation-duration: 12s; }
.foam-dot:nth-child(7) { left: 53%; top: 16%; width: 9px; height: 9px; animation-delay: -5s; animation-duration: 9s; }
.foam-dot:nth-child(8) { right: 5%; top: 48%; width: 23px; height: 23px; animation-delay: -8s; animation-duration: 15s; }
.dust-dot {
    width: 5px;
    height: 5px;
    background: rgba(219, 239, 228, .58);
    filter: blur(.2px);
    animation: dustDrift 8s linear infinite;
}
.dust-dot:nth-child(9) { left: 18%; top: 34%; animation-delay: -1s; }
.dust-dot:nth-child(10) { left: 31%; top: 62%; animation-delay: -4s; }
.dust-dot:nth-child(11) { right: 31%; top: 31%; animation-delay: -2s; }
.dust-dot:nth-child(12) { right: 17%; top: 68%; animation-delay: -6s; }
.water-line {
    position: absolute;
    width: 240px;
    height: 34px;
    opacity: .58;
    background: var(--aqua-2);
    clip-path: polygon(0 52%, 8% 32%, 16% 52%, 24% 32%, 32% 52%, 40% 32%, 48% 52%, 56% 32%, 64% 52%, 72% 32%, 80% 52%, 88% 32%, 100% 52%, 100% 72%, 0 72%);
    filter: drop-shadow(0 0 14px rgba(168,200,239,.42));
    animation: waveSlide 7s ease-in-out infinite;
}
.water-line--one { left: 7%; bottom: 22%; }
.water-line--two { right: 29%; top: 23%; transform: scale(.68); animation-delay: -3s; opacity: .36; }
.water-ring {
    position: absolute;
    right: 14%;
    top: 20%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(168,200,239,.16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(168,200,239,.035), 0 0 0 78px rgba(168,200,239,.02);
    animation: spinSoft 25s linear infinite reverse;
}
.service-tile {
    position: relative;
    overflow: hidden;
}
.service-tile::after {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 36%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
    transform: skewX(-18deg);
    transition: left .5s ease;
}
.service-tile:hover::after { left: 120%; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.08) translateX(-10px); } }
@keyframes copyRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes photoFloatIn { from { opacity: 0; transform: translate(24px, 18px) scale(.97); } to { opacity: 1; transform: translate(0, 0) scale(1); } }
@keyframes caretBlink { 0%, 42% { opacity: 1; } 43%, 100% { opacity: 0; } }
@keyframes foamRise { 0% { transform: translate3d(0, 40px, 0) scale(.72); opacity: 0; } 18% { opacity: .7; } 70% { opacity: .62; } 100% { transform: translate3d(22px, -155px, 0) scale(1.18); opacity: 0; } }
@keyframes dustDrift { 0% { transform: translate3d(-20px, 20px, 0); opacity: 0; } 20%, 70% { opacity: .5; } 100% { transform: translate3d(80px, -50px, 0); opacity: 0; } }
@keyframes waveSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(36px); } }
@keyframes spinSoft { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scoreBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 980px) {
    .premium-hero { min-height: auto; padding-top: 70px; }
    .premium-hero::before { background: linear-gradient(120deg, rgba(6,16,35, .96), rgba(30,58,98, .76)), url('../img/hero-clean-home.png') center / cover no-repeat; }
    .premium-hero .wash-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 38px; }
    .premium-hero h1 { min-height: 145px; font-size: clamp(42px, 9vw, 68px); }
    .hero-service-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .quick-quote { margin-top: 28px; }
    .premium-photo img { height: 430px; transform: none; }
    .clean-score { right: 12px; top: 18px; }
}
@media (max-width: 640px) {
    .premium-hero { padding-top: 48px; }
    .premium-hero h1 { min-height: 132px; font-size: 42px; }
    .headline-kicker { font-size: .48em; }
    .premium-photo img { height: 310px; border-radius: 26px 26px 70px 26px; }
    .hero-service-strip { display: none; }
    .quick-quote { margin-top: 22px; }
    .clean-score { width: 108px; height: 108px; border-radius: 28px; }
    .clean-score strong { font-size: 26px; }
    .clean-tags span { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .premium-hero::before,
    .hero-copy-animated,
    .premium-photo,
    .foam-dot,
    .dust-dot,
    .water-line,
    .water-ring,
    .photo-orbit,
    .clean-score,
    .type-line::after {
        animation: none !important;
    }
}
