/* AutoShiner.Pro — modern landing styles */
:root {
    --navy: #0F172A;
    --blue: #3B82F6;
    --blue-dark: #2563EB;
    --slate: #64748B;
    --border: #E2E8F0;
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --star: #FBBF24;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --header-h: 72px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--navy);
    background: var(--bg);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.brand {
    display: flex;
    align-items: center;
}
.brand-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.site-nav a {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a.is-active { color: var(--blue); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    font-family: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn-secondary {
    background: var(--bg-soft);
    color: var(--navy);
    border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../src/assets/hero-detailing.jpg') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
    max-width: 680px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}
.hero-lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.92;
    margin: 0 0 1.75rem;
    max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}
.hero-rating .stars { color: var(--star); letter-spacing: 2px; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.section-header p { color: var(--slate); margin: 0; font-size: 1.05rem; }

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-card h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.service-subtitle {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 500;
}
.service-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 1rem;
}
.service-card ul {
    margin: 0 0 1.25rem;
    padding-left: 1.1rem;
    color: var(--slate);
    flex: 1;
    font-size: 0.95rem;
}
.service-card li { margin-bottom: 0.35rem; }
.service-card .btn { width: 100%; }
.service-desc { color: var(--slate); font-size: 0.9rem; margin: 0 0 0.5rem; flex: 1; }
.service-meta { font-size: 0.8rem; color: var(--slate); margin: 0 0 1rem; opacity: 0.85; }
.services-grid--categories { grid-template-columns: 1fr; }
.services-cta-link { text-align: center; margin-top: 2rem; }

/* Horizontal scroll — Our Services (desktop) */
.services-scroll-wrap {
    overflow: hidden;
    margin: 0 -0.25rem;
}
.services-grid--scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    -webkit-overflow-scrolling: touch;
}
.services-grid--scroll::-webkit-scrollbar { height: 8px; }
.services-grid--scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.services-grid--scroll .service-card {
    flex: 0 0 min(280px, 88vw);
    scroll-snap-align: start;
    min-height: 100%;
}

/* About preview (index1) */
.about-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.about-col-6 { min-width: 0; }
.about-story h3,
.about-values h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}
.about-story p {
    color: var(--slate);
    margin: 0;
    line-height: 1.7;
}
.about-values-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}
.about-read-more { text-align: center; margin: 2rem 0 0; }

/* Rewards */
.rewards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.reward-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.reward-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.reward-card h3 { margin: 0 0 0.75rem; font-size: 1.15rem; }
.reward-card p { color: var(--slate); margin: 0 0 0.5rem; font-size: 0.95rem; }
.reward-card ul { margin: 0.75rem 0 0; padding-left: 1.2rem; color: var(--slate); font-size: 0.9rem; }
.reward-card-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding-top: 1.25rem;
}

/* Scrollable testimonials */
.testimonials-scroll-wrap {
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}
.testimonials-scroll-wrap--bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: max(1rem, calc(50vw - 560px));
    padding-right: max(1rem, calc(50vw - 560px));
}
.testimonials-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    -webkit-overflow-scrolling: touch;
}
.testimonials-scroll::-webkit-scrollbar { height: 8px; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.testimonial-card--compact {
    flex: 0 0 min(300px, 85vw);
    scroll-snap-align: start;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.testimonial-card--compact blockquote {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-author { font-weight: 700; font-size: 0.875rem; }
.testimonial-location { color: var(--slate); font-size: 0.8rem; }

/* Footer logo & social */
.footer-logo {
    height: 44px;
    width: auto;
    max-width: 160px;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.contact-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 600;
}
.contact-social a:hover { border-color: var(--blue); color: var(--blue); }

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.scroll-to-top.is-visible,
.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover { background: var(--blue-dark); }

/* Footer cookie slot (landing pages) */
.landing-cookie-slot {
    width: 100%;
}
.landing-cookie-slot:empty {
    display: none;
}

/* Packages page (pricelist4) */
.packages-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.packages-jump-nav a {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 600;
}
.packages-jump-nav a:hover { border-color: var(--blue); color: var(--blue); }
.package-category { margin-bottom: 3rem; }
.package-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}
.package-category-header h2 { margin: 0; font-size: 1.5rem; }
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.package-card-head h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.package-card-desc { color: var(--slate); font-size: 0.875rem; margin: 0; }
.package-prices {
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--bg-soft);
    border-radius: 8px;
}
.package-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}
.package-price-row strong { color: var(--blue); }
.package-features {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    color: var(--slate);
    font-size: 0.875rem;
    flex: 1;
}
.packages-footer-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
}
.packages-footer-cta h2 { margin: 0 0 0.5rem; }
.packages-footer-cta p { color: var(--slate); margin: 0 0 1.25rem; }

/* Fleet quote modal extras */
.fleet-quote-modal { max-width: 640px; }
.fleet-packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.fleet-package-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.fleet-package-check:has(input:checked) {
    border-color: var(--blue);
    background: rgba(59, 130, 246, 0.06);
}


/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: step;
}
.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.step-card h3 { margin: 0 0 0.5rem; }
.step-card p { color: var(--slate); margin: 0; font-size: 0.95rem; }

/* Why us */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.reason-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.reason-item i { color: var(--blue); margin-top: 0.15rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.stat-box {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.stat-box strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 0.25rem;
}
.stat-box span { font-size: 0.875rem; opacity: 0.85; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--star); margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card blockquote {
    margin: 0 0 1rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.7;
}
.testimonial-author { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { color: var(--slate); font-size: 0.875rem; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    background: #fff;
    overflow: hidden;
}
.faq-list summary {
    padding: 1.125rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--blue); font-size: 1.25rem; font-weight: 400; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 1rem 1.25rem 1.25rem; color: var(--slate); font-size: 0.95rem; }
.faq-answer ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}
.cta-band h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 1.5rem;
    font-weight: 800;
}
.cta-band .btn-outline { margin-left: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--blue); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--bg-soft); color: var(--blue-dark); }

/* Book section anchor */
.book-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-soft);
}
.book-section h2 { margin: 0 0 0.75rem; font-size: 1.75rem; }
.book-section p { color: var(--slate); margin: 0 0 1.5rem; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0 0 0.5rem; }
.footer-tagline { margin: 0; font-size: 0.95rem; opacity: 0.8; }
.footer-col h3 { color: #fff; font-size: 1rem; margin: 0 0 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.8); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}
.footer-bottom p { margin: 0; }

/* Inner pages */
.page-hero {
    margin-top: var(--header-h);
    padding: 3.5rem 0 2.5rem;
    background: var(--bg-soft);
    text-align: center;
}
.page-hero h1 { margin: 0 0 0.5rem; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero p { color: var(--slate); margin: 0; max-width: 560px; margin-inline: auto; }
.page-content { padding: 3rem 0 5rem; }

/* Services page table */
.pricing-table-wrap { overflow-x: auto; margin: 2rem 0; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.pricing-table th, .pricing-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.pricing-table th { background: var(--bg-soft); font-weight: 700; }
.pricing-table tr:hover td { background: rgba(59, 130, 246, 0.04); }

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.contact-info-card {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
}
.contact-info-card h3 { margin: 0 0 1rem; }
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.contact-info-list i { color: var(--blue); margin-top: 0.2rem; }
.form-alert {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.form-alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-alert--error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

.coverage-list { columns: 2; gap: 2rem; font-size: 0.95rem; color: var(--slate); }
.coverage-list h4 { color: var(--navy); margin: 0 0 0.5rem; break-after: avoid; }
.coverage-list ul { margin: 0 0 1.25rem; padding-left: 1.1rem; }

.coverage-map-section {
    padding: 0 0 1rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.coverage-map-container {
    max-width: 960px;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
}
.coverage-map-heading {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--navy);
}
.coverage-map-lead {
    margin: 0 0 1rem;
    color: var(--slate);
    font-size: 0.95rem;
}
.coverage-map {
    width: 100%;
    height: 420px;
    min-height: 320px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #e2e8f0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.coverage-map .leaflet-container {
    width: 100%;
    height: 100%;
    font-family: var(--font);
}
.coverage-map-fallback {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--slate);
    font-size: 0.95rem;
}
.coverage-map-fallback--error { color: #991B1B; }
.coverage-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate);
}
.coverage-map-legend-item i { margin-right: 0.35rem; }
.coverage-map-legend-item--lagos i { color: var(--blue); }
.coverage-map-legend-item--ogun i { color: #059669; }
.coverage-map .leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: var(--font);
}
.coverage-map .leaflet-popup-content { margin: 0.65rem 0.85rem; font-size: 0.9rem; }

/* Toast */
.landing-toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    max-width: 360px;
}
.landing-toast.is-visible { opacity: 1; transform: translateY(0); }
.landing-toast--success { background: #059669; }

/* Mobile nav */
@media (max-width: 767px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s, opacity 0.25s;
    }
    body.nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .site-nav a { padding: 0.875rem 0; border-bottom: 1px solid var(--border); }
    .site-nav .nav-cta { margin-top: 0.5rem; text-align: center; }
}

@media (min-width: 768px) {
    .about-row { grid-template-columns: repeat(12, 1fr); }
    .about-col-6 { grid-column: span 6; }
}

@media (min-width: 640px) {
    .services-grid:not(.services-grid--scroll) { grid-template-columns: repeat(2, 1fr); }
    .rewards-grid { grid-template-columns: repeat(3, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .coverage-list { columns: 2; }
}

@media (min-width: 1024px) {
    .services-grid:not(.services-grid--scroll) { grid-template-columns: repeat(5, 1fr); }
    .services-grid--scroll .service-card {
        flex: 0 0 calc((100% - 5rem) / 5);
        min-width: 200px;
    }
    .testimonial-card--compact {
        flex: 0 0 min(320px, 28vw);
    }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .packages-grid { grid-template-columns: repeat(3, 1fr); }
}
