/* J.A Fast Delivery — Premium Same-Day Platform */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* WhatsApp-inspired Palette */
    --green: #25D366;
    /* Vibrant Button Green */
    --green-dark: #075E54;
    /* Deep Brand Green */
    --green-light: #dcf8c6;
    /* Chat Bubble Light Green */
    --black: #051b14;
    /* Deep Night Green */
    --gray-500: #051b14;
    /* Updated to match Deep Night Green */
    --gray-300: #e9edef;
    --gray-100: #f0f2f5;
    /* Message Background Gray */
    --gray-50: #fbfbfb;
    --white: #ffffff;
    --cream: #FDFBF5;
    /* Subtle warm background from their site */

    --page: 1100px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Super-rounded aesthetics */
    --radius: 32px;
    /* Large organic corners */

    --margin: 32px;
    --border: #e2e4e8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* No scrollbar native feel */
::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

body {
    font-family: var(--font);
    background: var(--cream);
    /* Warm foundation */
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.skeleton-lines {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--page);
    height: 100vh;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    pointer-events: none;
    z-index: 90;
}

@media (max-width: 1100px) {
    .skeleton-lines {
        display: none;
    }
}

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

.w {
    max-width: var(--page);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1100px) {}


/* Header Tweaks */
.header-burger {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 0;
}

.burger-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    height: 10px;
    justify-content: center;
}

.burger-icon span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-150%);
    width: 100%;
    max-width: var(--page);
    height: calc(100vh - 64px);
    background: var(--cream);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 90;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.m-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.m-cta {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    display: block;
}

/* Burger Active State */
.header-burger.active .burger-icon span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.header-burger.active .burger-icon span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Revealer */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered entrance for children */
.reveal.visible .service-card:nth-child(1),
.reveal.visible .step-card:nth-child(1),
.reveal.visible .why-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.visible .service-card:nth-child(2),
.reveal.visible .step-card:nth-child(3),
.reveal.visible .why-item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.visible .service-card:nth-child(3),
.reveal.visible .step-card:nth-child(5),
.reveal.visible .why-item:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.visible .service-card:nth-child(4),
.reveal.visible .why-item:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal.visible .service-card:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal.visible .service-card:nth-child(6) {
    transition-delay: 0.6s;
}

.service-card,
.step-card,
.why-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    padding: 0;
    max-width: var(--page);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-weight: 800;
    font-size: 20px;
    color: var(--green);
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand:hover .brand-logo {
    transform: translateX(5px) skewX(-10deg) scale(1.1);
    color: var(--green);
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Global Styles */
.section {
    padding: 100px 0;
    position: relative;
    max-width: var(--page);
    margin: 0 auto;
    /* Sections transparent to show cream bg */
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 12px;
    /* Squircle */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    border: 2px solid var(--black);
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: var(--black);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--black);
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

.btn:hover {
    transform: none;
    color: var(--white);
    border-color: var(--black);
}

.btn:hover::before {
    width: 100%;
}

.btn-green {
    background: var(--green);
    color: var(--white);
    /* Solid Green Button */
}

.btn-green::before {
    background: #000;
    /* Splash to black on hover? Or darker green? User said turn dark. */
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--black);
    /* Distinct outlined button */
    color: var(--black);
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--green);
}

/* ─── Hero ─── */
.hero {
    padding: 80px 0 64px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    max-width: var(--page);
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-sub {
    font-size: 18px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-lg {
    padding: 10px 26px;
    font-size: 15px;
    border-radius: 12px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.hero-small-link {
    color: var(--black);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

/* Hero visual — green organic shape */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

/* Hero blob removed */

/* Mobile Sticky FAB */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    justify-content: center;
    z-index: 999;
    z-index: 999;
    text-decoration: none;
    transform: scale(0);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
}

.mobile-sticky-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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

/* Hero info card removed */

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--cream);
    padding: 0;
    max-width: var(--page);
    margin: 0 auto;
}

.trust-bar .w {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-top: 32px;
    padding-bottom: 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item .val {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-item .desc {
    font-size: 13px;
    color: var(--black);
    font-weight: 500;
}

/* ─── Services ─── */
.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 15px;
    color: var(--black);
    max-width: 400px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-flow: dense;
}

/* Asymmetrical Bento Layout */
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(6) {
    grid-column: span 2;
}

/* Adjust visual for wide cards */
.service-card:nth-child(2) .service-visual,
.service-card:nth-child(3) .service-visual,
.service-card:nth-child(6) .service-visual {
    height: 140px;
    /* Slightly taller visual area for wide cards */
    margin-bottom: 24px;
}

.service-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: all 0.2s;
    cursor: default;
}

.service-card:hover {
    border-color: var(--green);
}

.service-visual {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--cream);
    border-radius: 10px;
    padding: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-visual {
    transform: none;
}

.service-visual svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ─── How It Works ─── */
.how-section {
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.step-card:hover {
    border-color: var(--green);
}

.step-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.step-illust {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-illust svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    margin-top: 100px;
}

.step-arrow svg {
    width: 40px;
    height: 24px;
}

.step-arrow svg path {
    animation: dashFlow 1.2s linear infinite;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -14;
    }
}

/* Step illustration animations */
.step-card:nth-child(1) .step-illust svg {
    animation: phoneRing 2.5s ease-in-out infinite;
}

.step-card:nth-child(3) .step-illust svg {
    animation: truckDrive 3s ease-in-out infinite;
}

.step-card:nth-child(5) .step-illust svg {
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes phoneRing {

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

    5% {
        transform: rotate(2deg);
    }

    10% {
        transform: rotate(-2deg);
    }

    15% {
        transform: rotate(2deg);
    }

    20% {
        transform: rotate(-2deg);
    }

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

@keyframes truckDrive {

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

    50% {
        transform: translateX(4px);
    }
}

@keyframes pinPulse {

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

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

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--black);
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.5;
}

.steps-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.steps-cta span {
    font-size: 15px;
    color: var(--black);
}

.steps-cta strong {
    color: var(--green);
    font-weight: 700;
}


/* ─── Full-Bleed Map ─── */
.map-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    max-width: var(--page);
    margin: 0 auto;
    border-radius: 32px;
}

.map-full {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.map-card {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 400px;
    border: 1px solid var(--border);

}

.map-card h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.map-card>p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 16px;
}

.map-card-cities {
    font-size: 13px;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Leaflet overrides */
.leaflet-tile-pane {
    filter: grayscale(100%);
}

.home-marker {
    background: none !important;
    border: none !important;
}

.leaflet-marker-icon.city-dot {
    background: none !important;
    border: none !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: var(--font);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
}

@keyframes markerPulse {
    0% {
        transform: none;
        opacity: 0.6;
    }

    100% {
        transform: none;
        opacity: 0;
    }
}

/* ─── Why Grid ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
}

.why-item {
    position: relative;
    padding-top: 8px;
}

.why-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.faq-left h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.faq-left p {
    font-size: 15px;
    font-size: 15px;
    color: var(--black);
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
    transition: 0.15s;
}

.faq-q:hover {
    color: var(--green);
}

.faq-q::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
    transition: 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-q::after {
    transform: rotate(-135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    font-size: 14px;
    font-size: 14px;
    color: var(--black);
    padding-bottom: 20px;
    line-height: 1.6;
}

/* ─── Bottom CTA ─── */
.final-cta {
    padding: 0;
    text-align: center;
    background: var(--cream);
    max-width: var(--page);
    margin: 0 auto;
}

.final-cta .w {
    border-top: 1px solid var(--border);
    padding-top: 80px;
    padding-bottom: 80px;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.final-cta>.w>p {
    color: var(--black);
    font-size: 16px;
    margin-bottom: 28px;
}

.final-cta .phone-link {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    display: block;
    margin-bottom: 28px;
    letter-spacing: -1px;
    transition: 0.15s;
}

.final-cta .phone-link:hover {
    color: var(--green-hover);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ─── Footer (Dark) ─── */
.site-footer {
    background: #000000;
    /* Pure Black to match button hover */
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 0;
    max-width: var(--page);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-500);
    /* Muted text on dark */
    max-width: 280px;
    line-height: 1.6;
}

/* On dark bg, gray-500 might be too dark. Let's lighten it */
.site-footer .footer-tagline,
.site-footer a {
    color: var(--white);
    /* White text */
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 400;
    /* No bold, no caps */
    color: var(--white);
    margin-bottom: 24px;
}

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

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    /* Subtle dark separator on black */
    padding-top: 32px;
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 14px;
    color: var(--white);
}

/* Card Refinements */
.service-card,
.step-card,
.map-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    /* Clean cards */
}

/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-burger {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero {
        padding: 40px 0 32px;
        /* Restored some padding to prevent overlap */
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-visual {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-bar .w {
        padding-top: 16px;
        /* Reduced top padding */
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
    }

    .service-card {
        min-width: 280px;
        scroll-snap-align: center;
    }

    /* Mobile sticky btn removed */

    .steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        align-items: center;
        padding-bottom: 24px;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        -webkit-overflow-scrolling: touch;
    }

    .step-card {
        min-width: 280px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .step-arrow {
        display: flex;
        min-width: 40px;
        flex-shrink: 0;
        margin-top: 0;
        justify-content: center;
    }

    .steps-cta {
        flex-direction: column;
        gap: 12px;
    }


    /* Horizontal Scroll Hint Animation */
    @keyframes swipeHint {
        0% {
            opacity: 0;
            transform: translateX(10px);
        }

        10% {
            opacity: 1;
            transform: translateX(0);
        }

        40% {
            opacity: 1;
            transform: translateX(-20px);
        }

        70% {
            opacity: 0;
            transform: translateX(-20px);
        }

        100% {
            opacity: 0;
            transform: translateX(10px);
        }
    }

    .scroll-hint-wrapper {
        position: relative;
        width: 100%;
    }

    .scroll-hint-icon {
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        pointer-events: none;
        opacity: 0;
    }

    .show-hint .scroll-hint-icon {
        animation: swipeHint 2.5s ease-in-out 2 forwards;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 80vh;
        min-height: 400px;
        max-height: 600px;
    }

    .map-overlay {
        padding: 16px;
    }

    .map-card {
        max-width: 100%;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 260px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    /* Mobile overrides for removed card eliminated */

    .map-card {
        padding: 24px;
    }

    .map-card h2 {
        font-size: 20px;
    }

    .map-overlay {
        display: none;
    }

    .site-footer {
        padding-bottom: 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ─── Animations ─── */
@keyframes preloaderFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes logoRun {
    0% {
        transform: translate(0, 0) rotate(5deg);
    }

    25% {
        transform: translate(2px, 1px) rotate(4deg);
    }

    50% {
        transform: translate(-1px, -1px) rotate(6deg);
    }

    75% {
        transform: translate(1px, -2px) rotate(5deg);
    }

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

@keyframes lineRun {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(-150px);
        opacity: 0;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    color: var(--green);
    animation: logoRun 0.1s infinite linear;
    z-index: 2;
}

.speed-lines {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
}

.speed-lines span {
    display: block;
    height: 3px;
    background: var(--green);
    border-radius: 4px;
    opacity: 0;
    animation: lineRun 0.4s infinite linear;
}

.speed-lines span:nth-child(1) {
    width: 60px;
    animation-delay: 0s;
}

.speed-lines span:nth-child(2) {
    width: 40px;
    animation-delay: 0.15s;
}

.speed-lines span:nth-child(3) {
    width: 50px;
    animation-delay: 0.3s;
}