/* =============================================
   BINGHAM RESTORATION — PREMIUM DESIGN SYSTEM
   ============================================= */

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

/* Lenis base styles */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

:root {
    /* Brand palette */
    --red: #EF4444;
    --red-dark: #B91C1C;
    --blue: #3B82F6;
    --blue-dark: #1E40AF;
    --green: #10B981;
    --slate-950: #020617;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;

    /* Functional */
    --bg: var(--white);
    --text: var(--slate-800);
    --text-muted: var(--slate-600);
    --border: var(--slate-200);
    --surface: var(--slate-50);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', var(--font);

    /* Spacing */
    --s1: .25rem;
    --s2: .5rem;
    --s3: .75rem;
    --s4: 1rem;
    --s5: 1.25rem;
    --s6: 1.5rem;
    --s8: 2rem;
    --s10: 2.5rem;
    --s12: 3rem;
    --s16: 4rem;
    --s20: 5rem;
    --s24: 6rem;

    /* Radius */
    --r1: 6px;
    --r2: 10px;
    --r3: 16px;
    --r4: 24px;
    --r-full: 100px;

    /* Easing */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .08), 0 2px 4px -2px rgba(0, 0, 0, .04);
    --shadow-md: 0 6px 18px -4px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 30px -6px rgba(0, 0, 0, .12);
    --shadow-xl: 0 24px 48px -12px rgba(0, 0, 0, .18);
    --shadow-glow: 0 0 40px rgba(239, 68, 68, .45);
    --shadow-blue-glow: 0 0 30px rgba(59, 130, 246, .15);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--s6);
}

@media (min-width:768px) {
    .container {
        padding: 0 var(--s8);
    }
}

/* =============================================
   EMERGENCY FLOATING BUTTON (WOW FACTOR)
   ============================================= */
.emergency-call-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: var(--white);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateX(-50%) translateY(0);
    transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.emergency-call-btn.visible {
    opacity: 1;
    pointer-events: auto;
    animation: float-btn 3s ease-in-out infinite;
}

.emergency-call-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.04);
    box-shadow: 0 28px 56px -8px rgba(239, 68, 68, .45);
}

/* Pulse ring behind the button */
.pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 2.5px solid var(--red);
    opacity: 0;
    animation: ring-pulse 2.4s ease-out infinite;
}

.phone-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    animation: wiggle 2s ease-in-out infinite;
}

.call-text {
    display: none;
}

.phone-number {
    white-space: nowrap;
}

@keyframes float-btn {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-12deg);
    }

    30% {
        transform: rotate(10deg);
    }

    45% {
        transform: rotate(-6deg);
    }

    60% {
        transform: rotate(0deg);
    }
}

@media (min-width:640px) {
    .emergency-call-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .call-text {
        display: inline;
    }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    overflow: visible;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 180px;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
    max-width: 100%;
}

@media (min-width: 768px) {
    .logo {
        max-width: none;
    }

    .logo-img {
        height: 40px;
    }
}


/* Nav */
.nav {
    display: none;
    gap: var(--s6);
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
}

.nav a:hover {
    color: var(--slate-900);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--r-full);
    transition: transform .25s var(--ease-spring), box-shadow .25s;
}

.header-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(239, 68, 68, .3);
}

/* Mobile toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 101;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--slate-900);
    border-radius: 2px;
    transition: transform .3s, opacity .2s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -5px);
}

@media (min-width:768px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* Mobile nav overlay */
.nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    padding: 32px 24px;
    gap: 8px;
    z-index: 9999;
    animation: slideDown .3s var(--ease);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    overflow-y: auto;
}

.nav.mobile-open a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

/* Layered background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mobile focus: centered to keep main subject visible */
    object-position: 50% 50%;
    z-index: 0;
    pointer-events: none;
    /* Premium subtle slow zoom effect and fade in */
    animation: fadeInHero 0.5s ease-in-out forwards, slowZoomOut 15s ease-out forwards;
    transform: scale(1.1);
}

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

@keyframes slowZoomOut {
    to {
        transform: scale(1);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Mobile Vignette: balanced for readability without hiding the hero image */
    background:
        radial-gradient(ellipse 120% 80% at 50% 30%, rgba(10, 15, 30, .75) 0%, rgba(10, 15, 30, .5) 40%, rgba(15, 23, 42, .2) 70%, transparent 100%),
        linear-gradient(to top, rgba(10, 15, 30, .6) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Mobile padding: pushing text up slightly to reveal more image below */
    padding: 130px 0 110px;
    max-width: 640px;
    margin: 0 auto;
}

/* =============================================
   HERO BREAKPOINTS (Desktop Enhancements)
   ============================================= */
@media (min-width: 768px) {
    .hero-bg-img {
        /* Desktop focus: slightly lower to frame the scene better on wide screens */
        object-position: center 55%;
    }

    .hero-gradient {
        /* Desktop Vignette: wider, softer "spotlight" around centered text */
        background:
            radial-gradient(ellipse 70% 65% at 50% 45%, rgba(10, 15, 30, .82) 0%, rgba(10, 15, 30, .55) 40%, rgba(15, 23, 42, .18) 70%, transparent 100%),
            linear-gradient(to top, rgba(10, 15, 30, .65) 0%, transparent 30%);
    }

    .hero-content {
        padding: 160px 0 140px;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border: 1px solid rgba(239, 68, 68, .45);
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .9);
    background: rgba(239, 68, 68, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: var(--s8);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: dot-blink 1.6s ease-in-out infinite;
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    margin-bottom: var(--s5);
}

.hero-line {
    display: block;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .6), 0 1px 4px rgba(0, 0, 0, .4);
}

.hero-highlight {
    display: block;
    font-size: clamp(52px, 10vw, 96px);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    text-shadow:
        0 2px 40px rgba(0, 0, 0, .6),
        0 1px 6px rgba(0, 0, 0, .5),
        0 0 80px rgba(59, 130, 246, .12);
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

.hero-highlight-note {
    display: block;
    margin-top: 8px;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, .78);
    letter-spacing: .08em;
}

/* Subtitle */
.hero-subtitle,
.hero-desc {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    margin-bottom: var(--s10);
    font-weight: 500;
    letter-spacing: .3px;
    text-shadow: 0 1px 16px rgba(0, 0, 0, .6), 0 1px 3px rgba(0, 0, 0, .4);
}

.hero-desc {
    margin-bottom: var(--s16);
}

/* Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s4);
    justify-content: center;
}

/* ---- Glassmorphism Stats Bar ---- */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(15, 23, 42, .45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15); /* Premium Rim Lighting */
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    padding: 20px 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    justify-content: flex-end;
}

.hero-stat-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

/* Ensure all stat values align on the same row regardless of stars above */
.hero-stats-inner {
    align-items: flex-end;
}

.hero-stats-inner .hero-stat {
    min-height: 0;
}

.hero-stat-stars svg {
    display: block;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ---- Hero responsive ---- */
@media (max-width: 639px) {
    .hero-content {
        padding: 120px 0 100px;
    }

    .hero-stats-inner {
        gap: 12px;
        padding: 16px 0;
    }

    .hero-stat-value {
        font-size: 18px;
    }

    .hero-stat-label {
        font-size: 9px;
        letter-spacing: .5px;
    }

    .hero-stat-divider {
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 180px 0 160px;
    }

    .hero-stats-inner {
        padding: 24px 0;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.anim-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .8s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--r2);
    font-weight: 600;
    font-size: 15px;
    transition: all .3s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Ripple pseudo */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, .25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}

.btn:active::after {
    opacity: 1;
    transition: none;
}

.btn-emergency {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 68, 68, .3), inset 0 1px 0 rgba(255,255,255,.2);
    border-radius: var(--r3);
}

.btn-emergency::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transition: left .6s var(--ease);
    z-index: 1;
}

.btn-emergency:hover::before {
    left: 120%;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, .4), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .4);
}

.btn-xl {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-size: 16px;
    border: none;
    border-radius: var(--r2);
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, .3);
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-label {
    visibility: hidden;
}

.btn-submit.loading .btn-loading {
    display: flex;
    position: absolute;
}

/* =============================================
   SECTIONS — shared
   ============================================= */
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s3);
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--s4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.services .section-eyebrow,
.services .section-title,
.services .section-subtitle,
.coverage .section-eyebrow,
.coverage .section-title,
.coverage .section-subtitle,
.testimonials .section-eyebrow,
.testimonials .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.trust .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: var(--s10) 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(59, 130, 246, .04), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(139, 92, 246, .03), transparent 50%),
        var(--surface);
}

@media (min-width: 768px) {
    .services {
        padding: var(--s20) 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
    margin-top: var(--s10);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--s8);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r3);
    overflow: hidden;
    transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .35s;
    /* Premium: inner glow for depth */
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, .15), var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.8);
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, .02), rgba(255,255,255,1) 50%);
}

/* Glow effect on hover */
.card-glow {
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 120%;
    background: radial-gradient(circle at 50% 80%, rgba(59, 130, 246, .06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

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

.service-emoji {
    font-size: 36px;
    line-height: 1;
    margin-bottom: var(--s5);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(59, 130, 246, .03));
    box-shadow: 0 2px 8px rgba(59, 130, 246, .08), inset 0 1px 0 rgba(255,255,255,.9);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--s2);
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--s4);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    transition: gap .25s var(--ease);
}

.service-card:hover .card-action {
    gap: 8px;
}

@media (min-width:640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   TRUST
   ============================================= */
.trust {
    padding: var(--s10) 0;
    background: linear-gradient(160deg, #050a18 0%, var(--slate-950) 30%, #0d1528 60%, var(--slate-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .trust {
        padding: var(--s20) 0;
    }
}

.trust::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, .04) 0%, transparent 70%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
    margin-top: var(--s10);
}

.trust-card {
    padding: var(--s6) var(--s8);
    background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r3);
    backdrop-filter: blur(12px);
    transition: all .4s var(--ease);
    position: relative;
    overflow: visible;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0,0,0,.1);
}

.trust-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(59, 130, 246, .3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(59, 130, 246, .15);
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--blue);
    margin-bottom: var(--s4);
    overflow: visible;
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .15), transparent 70%);
    animation: iconHalo 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes iconHalo {
    0%, 100% { opacity: .5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trust-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: var(--s2);
}

.trust-card p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.7;
}

@media (min-width:640px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   VEHICLE BANNER
   ============================================= */
.vehicle-banner {
    padding: var(--s10) 0;
    background: var(--white);
    position: relative;
}

@media (min-width: 768px) {
    .vehicle-banner {
        padding: var(--s16) 0;
    }
}

.vehicle-img {
    width: 100%;
    height: auto;
    border-radius: var(--r4);
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, .18), 0 8px 24px -8px rgba(0, 0, 0, .1);
    object-fit: cover;
    max-height: 420px;
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
}

.vehicle-img:hover {
    animation-play-state: paused;
    transform: scale(1.015) translateY(-4px);
    box-shadow: 0 28px 72px -16px rgba(0, 0, 0, .22), 0 12px 32px -8px rgba(0, 0, 0, .12);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: var(--s10) 0;
}

@media (min-width: 768px) {
    .testimonials {
        padding: var(--s20) 0;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
    margin-top: var(--s10);
}

.testimonial-card {
    padding: var(--s8);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r3);
    transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .35s;
    border-top: 3px solid var(--blue);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px -8px rgba(59, 130, 246, .1), var(--shadow-lg);
    border-color: var(--border);
    border-top-color: var(--blue);
}

.stars {
    font-size: 18px;
    color: #F59E0B;
    letter-spacing: 3px;
    margin-bottom: var(--s4);
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, .3));
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: var(--s5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--s3);
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

@media (min-width:768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   COVERAGE
   ============================================= */
.coverage {
    padding: var(--s10) 0;
    background:
        radial-gradient(ellipse 70% 50% at 85% 15%, rgba(59, 130, 246, .04), transparent 60%),
        var(--surface);
}

@media (min-width: 768px) {
    .coverage {
        padding: var(--s20) 0;
    }
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
    margin-top: var(--s6);
}

a.location-card {
    display: block;
    padding: var(--s5) var(--s6);
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: var(--r2);
    transition: border-color .25s, transform .25s var(--ease), box-shadow .25s, background .25s;
    text-decoration: none;
    color: inherit;
    position: relative;
}

a.location-card[data-state]::after {
    content: attr(data-state);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: var(--r-full);
    background: rgba(59, 130, 246, .08);
    color: var(--blue);
}

a.location-card:hover {
    border-color: var(--blue);
    border-left-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -4px rgba(59, 130, 246, .12), var(--shadow-md);
    background: linear-gradient(135deg, rgba(59, 130, 246, .02), var(--white) 50%);
}

.location-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--slate-900);
    margin-bottom: var(--s1);
}

.location-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--s2);
}

.location-card .card-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    transition: color .2s;
}

a.location-card:hover .card-action {
    color: var(--blue-dark, #2563eb);
}

@media (min-width:640px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: var(--s10) 0;
}

@media (min-width: 768px) {
    .contact {
        padding: var(--s20) 0;
    }
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s10);
}

.contact-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: var(--s6);
    max-width: 440px;
}

.contact-desc strong {
    color: var(--slate-900);
}

.contact-meta {
    margin-top: var(--s8);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.meta-row {
    display: flex;
    align-items: center;
    gap: var(--s3);
    font-size: 14px;
    color: var(--text-muted);
}

.meta-row a {
    color: var(--blue);
    font-weight: 500;
}

/* Form */
.contact-form {
    padding: var(--s8);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r3);
    box-shadow: 0 12px 40px -8px rgba(59, 130, 246, .08), var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--s6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s4);
}

@media (min-width:480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--s4);
}

.form-honeypot {
    position: absolute !important;
    top: 0;
    left: -9999px;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: var(--s1);
}

.optional {
    font-weight: 400;
    color: var(--slate-400);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r1);
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .12), 0 0 0 6px rgba(59, 130, 246, .04);
    animation: focusPulse 2s ease-in-out infinite;
}

@keyframes focusPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, .12), 0 0 0 6px rgba(59, 130, 246, .04); }
    50% { box-shadow: 0 0 0 4px rgba(59, 130, 246, .18), 0 0 0 8px rgba(59, 130, 246, .06); }
}

.form-footer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--s4);
}

.form-status {
    min-height: 1.4em;
    margin-top: var(--s3);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-status.is-info {
    color: var(--blue);
}

.form-status.is-error {
    color: var(--red);
}

.form-status.is-success {
    color: #0f766e;
}

.form-footer a {
    color: var(--red);
    font-weight: 700;
}

@media (min-width:1024px) {
    .contact-wrap {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background:
        radial-gradient(ellipse 60% 50% at 20% 100%, rgba(59, 130, 246, .06), transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 0%, rgba(139, 92, 246, .04), transparent 50%),
        linear-gradient(180deg, #050a18, var(--slate-950));
    color: var(--slate-400);
    padding: var(--s16) 0 var(--s8);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s10);
    padding-bottom: var(--s10);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .logo-mark,
.footer-brand .logo-text {
    display: inline-flex;
    vertical-align: middle;
}

.footer-brand .logo-mark {
    margin-right: 8px;
}

.footer-brand p {
    margin-top: var(--s3);
    font-size: 14px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: var(--s3);
}

.footer-col a {
    display: inline-block;
    font-size: 14px;
    padding: 3px 0;
    color: var(--slate-400);
    transition: color .2s;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width .3s var(--ease);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: var(--s6);
    font-size: 13px;
}

.legal {
    margin-top: var(--s2);
    font-size: 11px;
    color: var(--slate-600);
    line-height: 1.6;
}

@media (min-width:768px) {
    .footer-top {
        grid-template-columns: 1.5fr 2fr;
    }
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform;
}

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

/* =============================================
   ORGANIC SECTION DIVIDERS
   ============================================= */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(99%); /* Prevent 1px gaps */
    z-index: 2;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 48px;
}

@media (min-width: 768px) {
    .section-divider svg {
        height: 72px;
    }
}

.divider-fill-surface { fill: var(--surface); }
.divider-fill-white { fill: var(--white); }
.divider-fill-trust { fill: #050a18; } /* Matches top of trust gradient */

/* Stagger for grids */
.services-grid .reveal:nth-child(1) {
    transition-delay: .05s;
}

.services-grid .reveal:nth-child(2) {
    transition-delay: .1s;
}

.services-grid .reveal:nth-child(3) {
    transition-delay: .15s;
}

.services-grid .reveal:nth-child(4) {
    transition-delay: .2s;
}

.services-grid .reveal:nth-child(5) {
    transition-delay: .25s;
}

.services-grid .reveal:nth-child(6) {
    transition-delay: .3s;
}

.trust-grid .reveal:nth-child(1) {
    transition-delay: .05s;
}

.trust-grid .reveal:nth-child(2) {
    transition-delay: .1s;
}

.trust-grid .reveal:nth-child(3) {
    transition-delay: .15s;
}

.trust-grid .reveal:nth-child(4) {
    transition-delay: .2s;
}

.testimonial-grid .reveal:nth-child(1) {
    transition-delay: .05s;
}

.testimonial-grid .reveal:nth-child(2) {
    transition-delay: .1s;
}

.testimonial-grid .reveal:nth-child(3) {
    transition-delay: .15s;
}

/* Hero anim-in */
.anim-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .7s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   BOTTOM PADDING FOR FLOATING BUTTON
   ============================================= */
.footer {
    padding-bottom: calc(var(--s16) + 72px);
}

/* =============================================
   HERO RAIN CANVAS
   ============================================= */
.hero-rain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: .45;
}

/* =============================================
   CREWS AVAILABLE INDICATOR
   ============================================= */
.crews-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: var(--r-full);
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .3);
    font-size: 13px;
    font-weight: 600;
    color: #6ee7b7;
    margin-bottom: var(--s4);
}

.crews-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: crews-pulse 1.8s ease-in-out infinite;
}

@keyframes crews-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .4);
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* =============================================
   PROOF STAT ICONS (ANIMATED)
   ============================================= */
.proof-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
    color: var(--blue);
}

.proof-icon-ring {
    stroke-dasharray: 75.4;
    stroke-dashoffset: 75.4;
    transition: stroke-dashoffset 1.4s var(--ease);
    stroke: var(--blue);
}

.hero-proof.visible .proof-icon-ring {
    stroke-dashoffset: 0;
}

.proof-icon-checkmark {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset .6s var(--ease) .8s;
    stroke: var(--green);
}

.hero-proof.visible .proof-icon-checkmark {
    stroke-dashoffset: 0;
}

/* 5-star icons for restorations stat */
.proof-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 20px;
}

.star-icon {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 1px 3px rgba(245, 158, 11, .4));
}

/* =============================================
   INSURANCE BADGE (HERO)
   ============================================= */
.insurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px 10px 32px;
    border-radius: var(--r-full);
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .25);
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: var(--s6);
    margin-left: var(--s4);
    margin-right: var(--s4);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .insurance-badge {
        margin-left: 0;
        margin-right: 0;
    }
}

.insurance-badge strong {
    color: #6ee7b7;
}

.insurance-badge-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.insurance-badge>span:first-of-type {
    position: relative;
    z-index: 2;
}

.insurance-badge-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, .1) 45%,
            rgba(255, 255, 255, .18) 50%,
            rgba(255, 255, 255, .1) 55%,
            transparent 100%);
    transform: translateX(-100%);
    animation: badgeShimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes badgeShimmer {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =============================================
   HOW IT WORKS — TIMELINE
   ============================================= */
.how-it-works {
    padding: var(--s20) 0;
    background:
        radial-gradient(circle 1px at 1px 1px, rgba(0,0,0,.03) 1px, transparent 0) 0 0 / 24px 24px,
        var(--white);
}

.how-it-works .section-eyebrow,
.how-it-works .section-title,
.how-it-works .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.steps-timeline {
    position: relative;
    max-width: 640px;
    margin: var(--s10) auto 0;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), rgba(59, 130, 246, .1));
    box-shadow: 0 0 8px rgba(59, 130, 246, .3), 0 0 16px rgba(59, 130, 246, .1);
    animation: timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(59, 130, 246, .2), 0 0 16px rgba(59, 130, 246, .05); }
    50% { box-shadow: 0 0 12px rgba(59, 130, 246, .4), 0 0 24px rgba(59, 130, 246, .15); }
}

.step-item {
    position: relative;
    display: flex;
    gap: var(--s5);
    margin-bottom: var(--s8);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--white), 0 4px 12px rgba(59, 130, 246, .25);
    margin-left: -40px;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, .3);
    animation: stepPulse 2.5s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.2); opacity: 0; }
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--s1);
    line-height: 1.3;
    padding-top: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   INSURANCE LOGOS BAR
   ============================================= */
.insurance-logos {
    padding: var(--s10) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.insurance-inner {
    text-align: center;
}

.insurance-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--s6);
}

.logos-marquee {
    overflow: hidden;
    margin-bottom: var(--s4);
    position: relative;
}

.logos-track {
    display: inline-flex;
    gap: var(--s4);
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-600);
    white-space: nowrap;
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--r2);
    background: var(--white);
    transition: all .25s var(--ease);
    flex-shrink: 0;
}

.logo-item:hover {
    color: var(--slate-900);
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(59, 130, 246, .12);
}

.insurance-sub {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* =============================================
   TESTIMONIAL CAROUSEL
   ============================================= */
.carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: var(--s10);
}

.carousel-track {
    display: flex;
    transition: transform .5s var(--ease);
    gap: var(--s4);
}

.carousel-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
}

@media (min-width:768px) {
    .carousel-track .testimonial-card {
        flex: 0 0 calc(50% - var(--s4) / 2);
    }
}

@media (min-width:1024px) {
    .carousel-track .testimonial-card {
        flex: 0 0 calc(33.333% - var(--s4) * 2 / 3);
    }
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s4);
    margin-top: var(--s6);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--slate-600);
    transition: all .25s var(--ease);
    cursor: pointer;
}

.carousel-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(59, 130, 246, .12);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-300);
    border: none;
    cursor: pointer;
    transition: all .25s var(--ease);
    padding: 0;
}

.carousel-dots .dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   EXIT-INTENT POPUP
   ============================================= */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}

.exit-popup-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup {
    position: relative;
    background: var(--white);
    border-radius: var(--r3);
    padding: var(--s10) var(--s8);
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(.9) translateY(20px);
    transition: transform .4s var(--ease-spring);
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--slate-400);
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.exit-popup-close:hover {
    color: var(--slate-900);
}

.exit-popup-icon {
    font-size: 48px;
    margin-bottom: var(--s4);
}

.exit-popup h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: var(--s3);
}

.exit-popup p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--s5);
}

.exit-popup-highlight {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .3);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 14px;
    color: #059669;
    margin-bottom: var(--s6);
}

.exit-popup-cta {
    width: 100%;
    justify-content: center;
}

.exit-popup-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--s4);
    margin-bottom: 0;
}

.exit-popup-sub a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}

/* =============================================
   SELECTION COLOUR
   ============================================= */
::selection {
    background: rgba(59, 130, 246, .2);
    color: var(--slate-900);
}

/* =============================================
   13. GOOGLE REVIEWS WIDGET
   ============================================= */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: var(--s8);
    padding: var(--s6);
    background: var(--white);
    border-radius: var(--r3);
    box-shadow: var(--shadow-sm);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo svg {
    width: 32px !important;
    height: 32px !important;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 18px !important;
    height: 18px !important;
}

.rating-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.google-review-card {
    text-align: left;
    padding: var(--s6) !important;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--blue), #8B5CF6) 1;
    position: relative;
}

.google-review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 72px;
    font-family: Georgia, serif;
    line-height: 1;
    color: rgba(59, 130, 246, .06);
    pointer-events: none;
    z-index: 0;
}

.google-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.google-author-info {
    flex: 1;
}

.google-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--slate-900);
}

.google-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.google-icon-small {
    margin-left: auto;
}

.google-icon-small svg {
    width: 16px !important;
    height: 16px !important;
}

.google-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.google-stars svg {
    width: 16px !important;
    height: 16px !important;
}

.google-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* =============================================
   14. INTERACTIVE MAP
   ============================================= */
.map-container {
    position: relative;
    z-index: 10;
}

.leaflet-popup-content-wrapper {
    border-radius: var(--r2);
    box-shadow: var(--shadow-md);
}

.leaflet-popup-content {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.5;
    margin: 16px;
}

.leaflet-popup-content strong {
    font-size: 16px;
    color: var(--slate-900);
}

.leaflet-popup-content a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.leaflet-popup-content a:hover {
    text-decoration: underline;
}

.metro-tooltip {
    background-color: var(--slate-900);
    color: white;
    border: none;
    border-radius: var(--r-full);
    padding: 6px 12px;
    font-weight: 600;
    font-family: var(--font);
    box-shadow: var(--shadow-md);
}

.metro-tooltip::before {
    border-top-color: var(--slate-900); /* Point arrow */
}

/* Trust card tweak for 5 items */
@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .trust-grid>* {
        grid-column: span 2;
    }

    .trust-grid>*:nth-child(4) {
        grid-column: 2 / 4;
    }

    .trust-grid>*:nth-child(5) {
        grid-column: 4 / 6;
    }
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding: 12px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs li::after {
    content: '›';
    margin-left: 6px;
    color: var(--slate-400);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.breadcrumbs a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.breadcrumbs .current {
    color: var(--slate-700);
    font-weight: 600;
}

/* =============================================
   NEIGHBORHOODS TAG GRID
   ============================================= */
.neighborhoods {
    padding: var(--s16) 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.neighborhoods .section-eyebrow,
.neighborhoods .section-title,
.neighborhoods .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.neighborhoods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: var(--s8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhood-tag {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-700);
    transition: all .25s var(--ease);
}

.neighborhood-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(59, 130, 246, .1);
    transform: translateY(-1px);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-section {
    padding: var(--s16) 0;
    background: var(--white);
}

.faq-section .section-eyebrow,
.faq-section .section-title,
.faq-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 720px;
    margin: var(--s8) auto 0;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--r2);
    margin-bottom: var(--s3);
    overflow: hidden;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, .3);
}

.faq-item.open {
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(59, 130, 246, .08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--s5) var(--s6);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    text-align: left;
    line-height: 1.4;
    gap: var(--s4);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--slate-400);
    transition: transform .3s var(--ease), color .2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 var(--s6) var(--s6);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .vehicle-img { animation: none; }
    .btn-emergency::before { transition: none; }
}
