          /* --- CSS VARIABLES --- */
        :root {
            --primary-blue: #0d47a1;
            --secondary-blue: #1565c0;
            --light-blue: #e3f2fd;
            --accent-blue: #2196f3;
            --text-dark: #1a2332;
            --text-light: #546e7a;
            --white: #ffffff;
            --off-white: #f8fbff;
        }

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

        html { scroll-behavior: smooth; }
        body {
            font-family: 'Playfair Display', sans-serif;
            color: var(--text-dark);
            background-color: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 { font-weight: 700; line-height: 1.2; }
        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; }
        p {
            font-family: 'Inter', sans-serif;
        }
        /* --- UTILITIES --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0,0,0,0.1);
            transform: translateY(0);
            transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
            position: relative; /* for echo pseudo element */
            overflow: visible;
        }

        /* Echo ring */
        .btn::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%) scale(1);
            border-radius: inherit;
            opacity: 0;
            pointer-events: none;
        }

        /* Primary button styles */
        .btn-primary {
            background-color: var(--accent-blue);
            color: white;
        }
        .btn-primary:hover {
            background-color: #1976d2;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .btn-primary::after {
            box-shadow: 0 0 0 2px rgba(33,150,243,0.18), 0 0 0 8px rgba(33,150,243,0.06);
        }

        /* Secondary button styles */
        .btn-secondary {
            background-color: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
        }
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        .btn-secondary::after {
            box-shadow: 0 0 0 2px rgba(255,255,255,0.16), 0 0 0 8px rgba(255,255,255,0.06);
        }

        /* Trigger the echo animation on hover / focus */
        .btn:hover::after,
        .btn:focus-visible::after {
            animation: echo 900ms ease-out;
        }


        /* Accessibility focus state */
        .btn:focus-visible {
            outline: 2px solid rgba(255,255,255,0.2);
            outline-offset: 4px;
        }

        /* --- HEADER --- */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 200;
            transition: background 0.25s ease, padding 0.18s ease, box-shadow 0.18s ease;
        }
        header.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            background: rgba(9,37,82,0.92);
            box-shadow: 0 6px 20px rgba(6,20,45,0.25);
            z-index: 100001;
        }
        /* backdrop-filter lives on the pseudo-element so the header itself
           never becomes a containing block for the fixed nav on iOS Safari */
        header.sticky::before {
            content: '';
            position: absolute;
            inset: 0;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: -1;
            pointer-events: none;
        }
        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { display: flex; align-items: center; line-height: 0; }
        .logo-img {
            height: 42px;
            width: auto;
            display: block;
            transition: height 0.18s ease;
        }
        header.sticky .logo-img { height: 34px; }
        @media (max-width: 768px) { .logo-img { height: 36px; } }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
        .nav-links a:hover { color: white; }
        .skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
        .skip-link:focus { position: static; left: 20px; top: 20px; width: auto; height: auto; background: var(--accent-blue); color: white; padding: 8px 12px; border-radius: 4px; z-index: 9999; text-decoration: none; }
        .menu-toggle { display: none; background: rgba(255,255,255,0.06); border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 8px 10px; border-radius: 8px; }
        .menu-toggle[aria-expanded="true"] { background: rgba(255,255,255,0.12); }
        /* Mobile nav open state */
        .nav-links.open {
            display: flex;
            flex-direction: column;
            position: fixed;
            /* grow to fit content up to 300px, never closer than 16px from each edge */
            width: min(calc(100vw - 32px), 300px);
            right: 12px;
            top: 64px;
            background: #ffffff;
            color: var(--text-dark);
            padding: 8px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.07);
            box-shadow: 0 16px 48px rgba(0,0,0,0.18);
            z-index: 100501;
            gap: 2px;
            max-height: calc(100vh - 84px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            pointer-events: auto;
            align-items: stretch;
        }
        .nav-links.open a {
            color: var(--text-dark);
            padding: 13px 16px;
            display: block;
            width: 100%;
            min-height: 44px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            white-space: normal;   /* allow wrap on very narrow screens */
            text-align: left;
            pointer-events: auto;
        }
        .nav-links.open a:hover,
        .nav-links.open a:focus { background: rgba(13,71,161,0.06); color: var(--primary-blue); outline: none; }
        @media (max-width: 360px) { .nav-links.open { right: 8px; top: 60px; } }

        /* Ensure anchor targets are visible beneath the fixed header */
        #services, #clients, #about, #contact { scroll-margin-top: 90px; }
        @media (max-width: 480px) { #services, #clients, #about, #contact { scroll-margin-top: 76px; } }

        /* --- HERO SECTION WITH WAVES --- */
        .hero {
            position: relative;
            height: 90vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
            background: linear-gradient(160deg, #071f46 0%, #0d47a1 60%, #1565c0 100%);
        }

        #hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(7,31,70,0.70) 0%, rgba(13,71,161,0.52) 60%, rgba(21,101,192,0.48) 100%);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            position: relative;
            z-index: 10;
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: 1px; }
        .hero p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; }

        /* CTA group — app store badge buttons */
        .cta-group {
            display: inline-flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
        }
        .cta-group .btn {
            padding: 0;
            min-width: unset;
            line-height: 0;
            border-radius: 8px;
            background: none;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        }
        .cta-group .btn img {
            display: block;
            height: 56px;
            width: auto;
            border-radius: 8px;
        }

        @media (max-width: 480px) {
            .cta-group {
                display: flex;
                flex-direction: column;
                gap: 12px;
                align-items: center;
                width: 100%;
            }
            .cta-group .btn img {
                height: 52px;
            }
        }

        /* --- INTRO / PROBLEM SECTION (Dark Blue Band) --- */
        .intro-band {
            background-color: #0b3c85;
            padding: 80px 0 90px;
            color: white;
            text-align: center;
            position: relative;
        }
        .intro-band h2 { font-size: 2.2rem; margin-bottom: 20px; }
        .intro-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .intro-item {
            background: rgba(255,255,255,0.05);
            padding: 10px;
            border-radius: 12px;
            max-width: 700px;
            min-width: 220px;
            flex: 1 1 220px;
            text-align: left;
            }
        /* --- FEATURE SECTIONS (About) --- */
        .feature-section {
            padding: 40px 0;
            position: relative;
        }

        /* --- HOW IT WORKS --- */
        .how-steps-wrapper {
            padding-top: 72px;
            padding-bottom: 52px;
        }
        .how-header {
            text-align: center;
            margin-bottom: 12px;
        }
        .how-eyebrow {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--accent-blue);
            margin-bottom: 14px;
        }
        .how-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
            color: #071E3B;
            margin-bottom: 14px;
        }
        .how-header p {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 480px;
            margin: 0 auto;
        }
        .how-steps {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }
        .how-step {
            display: grid;
            grid-template-columns: 55fr 45fr;
            gap: 64px;
            align-items: center;
        }
        .how-step--reverse .how-step-image { order: 2; }
        .how-step--reverse .how-step-content { order: 1; }
        .how-step-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            box-shadow: 0 20px 56px rgba(7, 31, 70, 0.12);
        }
        .how-step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        .how-step:hover .how-step-image img { transform: scale(1.04); }
        .how-step-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            width: 46px;
            height: 46px;
            background: rgba(7, 31, 70, 0.80);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
        }
        .how-step-content { padding: 10px 0; }
        .how-step-label {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--accent-blue);
            margin-bottom: 12px;
        }
        .how-step-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 2vw + 0.5rem, 2rem);
            color: #071E3B;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        .how-step-content p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.78;
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .how-steps-wrapper { padding-top: 48px; padding-bottom: 28px; }
            .how-header { margin-bottom: 44px; }
            .how-steps { gap: 52px; }
            .how-step {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .how-step--reverse .how-step-image,
            .how-step--reverse .how-step-content { order: unset; }
            .how-step-image { aspect-ratio: 16 / 9; }
        }

        /* --- SERVICES GRID SECTION --- */
        .services-section {
            background: #f0f4f8;
            padding: 100px 0;
            position: relative;
        }
        .services-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .services-header h2 {
            font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
            color: #071E3B;
            margin-bottom: 12px;
        }
        .services-header p {
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .services-section { padding: 70px 0; }
        }

        /* --- CLIENTS SECTION --- */
        .clients-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        .clients-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
            color: #ffffff;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 14px;
        }
        .clients-section > .container > p {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 300;
            max-width: 480px;
            margin: 0 auto;
        }
        /* --- FOOTER --- */
        footer { background-color: #071f46; color: rgba(255,255,255,0.85); padding: 60px 0 30px; font-size: 0.95rem; }
        .footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 28px; }
        .footer-brand { flex: 2; }
        .footer-brand .footer-logo { display: flex; align-items: center; line-height: 0; margin-bottom: 14px; }
        .footer-logo-img { height: 36px; width: auto; display: block; }
        .footer-brand p { color: rgba(255,255,255,0.75); margin-top: 0; line-height: 1.5; }
        .footer-links { display: flex; gap: 40px; }
        .footer-links h4, .footer-contact h4 { color: white; margin-bottom: 12px; }
        .footer-links a, .footer-contact a { display: block; color: rgba(255,255,255,0.75); margin-bottom: 8px; font-size: 0.95rem; }
        .footer-contact { text-align: right; }
        .footer-contact a { color: rgba(255,255,255,0.9); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
        .footer-bottom .footer-bottom-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
        .footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; color: white; }

        @media (max-width: 768px) {
            .footer-content { flex-direction: column; gap: 16px; }
            .footer-contact { text-align: left; }
            .footer-bottom .footer-bottom-grid { flex-direction: column; align-items: flex-start; gap: 8px; }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero { height: auto; padding: 130px 0 80px; min-height: unset; }
            .hero h1 { font-size: 2.2rem; letter-spacing: 0; }
            .hero p { font-size: 1.05rem; margin-bottom: 28px; }
            .intro-grid { flex-direction: column; align-items: center; }
            .nav-links { display: none; }
            .menu-toggle { display: block; }
            /* Card content — reduce padding for small screens */
            .card-content { padding: 1.5rem; }
            .card-content h2 { font-size: 1.4rem; }
            /* Intro band typography */
            .intro-band { padding: 56px 0 72px; }
            .intro-band h2 { font-size: 1.65rem; }
            .intro-band h3 { font-size: 0.975rem; font-weight: 400; line-height: 1.7; }
            /* Clients section spacing */
            .clients-section { padding: 64px 0; }
        }
                /* The Grid System */
        .card-grid {
            display: grid;
            grid-template-columns: 1fr; /* Stacked on mobile */
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 10px;
        }

        /* PC Side-by-Side View */
        @media (min-width: 768px) {
            .card-grid {
                grid-template-columns: 1fr 1fr; /* Two columns on PC */
            }
        }

        /* Modern Card Styling */
        .modern-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #eee;
        }

        /* The Uplift Effect */
        .modern-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #d1d1d1;
        }

        /* Elegant Image Zoom */
        .card-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease-in-out;
        }

        .modern-card:hover .card-image {
            transform: scale(1.1);
        }

        /* Typography Styling */
        .card-content {
            padding: 2.5rem;
        }

        .card-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .card-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            font-weight: 300;
        }

        .card-link {
            color: #0044cc;
            text-decoration: none;
            font-weight: 400;
            border-bottom: 1px solid transparent;
            transition: border 0.3s ease;
        }

        .card-link:hover {
            border-bottom: 1px solid #0044cc;
        }
/* The Accent Line Flourish */
.accent-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #0044cc; /* Replace with your brand color */
    transform: scaleY(0.2); /* Small line by default */
    transition: transform 0.4s ease;
    transform-origin: center;
}

/* Background Numbering Flourish */
.flourish {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.03); /* Extremely subtle watermarked number */
    font-style: italic;
    transition: all 0.4s ease;
}

/* --- RIDE CARDS (image-background, 3-up grid) --- */
.ride-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

.ride-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ride-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.30);
}

.ride-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
    z-index: 0;
}

.ride-card:hover .ride-card-bg {
    transform: scale(1.08);
}

.ride-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 31, 70, 0.92) 0%,
        rgba(7, 31, 70, 0.48) 55%,
        rgba(7, 31, 70, 0.16) 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.ride-card:hover .ride-card-overlay {
    background: linear-gradient(
        to top,
        rgba(7, 31, 70, 0.96) 0%,
        rgba(7, 31, 70, 0.60) 55%,
        rgba(7, 31, 70, 0.26) 100%
    );
}

.ride-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    z-index: 2;
}

.ride-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.ride-card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    font-weight: 300;
}

/* Accent line — same expand mechanic as client-card */
.ride-card .accent-line { z-index: 3; }
.ride-card:hover .accent-line { transform: scaleY(1); }

/* Flourish — white tint so it reads on the dark image overlay */
.ride-card .flourish { color: rgba(255, 255, 255, 0.07); z-index: 2; }
.ride-card:hover .flourish { color: rgba(255, 255, 255, 0.15); transform: translateY(-10px); }

@media (max-width: 600px) {
    .ride-card { height: 360px; }
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: linear-gradient(135deg, #071f46 0%, #0b3c85 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    scroll-margin-top: 90px;
}
.contact-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-centered h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}
.contact-centered > p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.contact-detail-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    min-height: 52px;
    transition: background 0.2s, color 0.2s;
    word-break: break-all;
}
.contact-detail-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}
.contact-detail-icon { font-size: 1.1rem; opacity: 0.65; flex-shrink: 0; }
@media (max-width: 768px) {
    .contact-section { padding: 70px 0; }
}

/* --- FLOURISH DIVIDERS --- */
.flourish-divider {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.flourish-divider::before {
    content: '';
    display: block;
    width: min(260px, 40%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 25%,
        rgba(255, 255, 255, 0.35) 75%,
        transparent 100%
    );
}
.flourish-divider--on-light::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(13, 71, 161, 0.18) 25%,
        rgba(13, 71, 161, 0.18) 75%,
        transparent 100%
    );
}

/* --- EXPLORE / MAP SECTION --- */
#explore { scroll-margin-top: 90px; }
@media (max-width: 480px) { #explore { scroll-margin-top: 76px; } }

.explore-section {
    background: #f0f4f8;
    padding: 80px 0 60px;
    position: relative;
}
.explore-section .how-header {
    margin-bottom: 48px;
}
.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.explore-map-frame {
    position: sticky;
    top: 100px;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 56px rgba(7, 31, 70, 0.12);
}
.explore-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.explore-places-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 14px;
}
.places-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.place-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    cursor: pointer;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.place-item:hover {
    border-color: rgba(33, 150, 243, 0.35);
    box-shadow: 0 4px 16px rgba(7, 31, 70, 0.08);
    transform: translateX(3px);
}
.place-item.active {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.18);
}
.place-check {
    width: 28px;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-blue);
    background: rgba(33, 150, 243, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}
.place-check::after {
    content: '✓';
}
.place-item.active .place-check {
    background: var(--accent-blue);
    color: #ffffff;
}
.place-info strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
.place-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 768px) {
    .explore-section { padding: 64px 0 40px; }
    .explore-section .how-header { margin-bottom: 32px; }
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .explore-map-frame {
        position: static;
        height: 340px;
        border-radius: 12px;
    }
    .place-item { padding: 14px 16px; }
    .place-item:hover { transform: none; }
}
@media (max-width: 480px) {
    .explore-map-frame { height: 260px; }
}

/* --- SCROLL REVEAL (mobile cards: tilt + uplift on scroll into view) --- */
@media (max-width: 768px) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(52px) rotate(-2deg);
        transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, opacity;
    }
    .scroll-reveal.is-visible {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}