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

        :root {
            --primary: #0a0f1f;
            --accent: #f59e0b;
            --accent-dark: #d97706;
            --secondary: #1e293b;
            --text: #0f172a;
            --text-light: #64748b;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
            --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 18px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.35s ease;
        }

        nav.scrolled {
            background: var(--primary);
            box-shadow: 0 2px 24px rgba(0,0,0,0.35);
            padding: 12px 32px;
        }

        .nav-logo {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .nav-logo span { color: var(--accent); }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.88);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--accent); }

        /* Custom lang dropdown */
        .lang-dropdown { position: relative; }
        .lang-btn {
            display: flex; align-items: center; gap: 7px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.28);
            color: white; padding: 6px 12px; border-radius: 8px;
            cursor: pointer; font-family: 'Poppins', sans-serif;
            font-size: 0.82rem; font-weight: 500; transition: background 0.2s;
            white-space: nowrap;
        }
        .lang-btn:hover { background: rgba(255,255,255,0.2); }
        .lang-btn img { border-radius: 2px; vertical-align: middle; }
        .lang-btn-arrow { font-size: 0.65rem; opacity: 0.7; }
        .lang-menu {
            display: none; position: absolute; top: calc(100% + 8px); right: 0;
            background: #1e293b; border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px; overflow: hidden; min-width: 140px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.5); z-index: 2000;
        }
        .lang-menu.open { display: block; }
        .lang-option {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 16px; cursor: pointer; color: rgba(255,255,255,0.8);
            font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
            transition: background 0.15s; border: none; background: none; width: 100%;
            text-align: left;
        }
        .lang-option:hover { background: rgba(255,255,255,0.08); color: white; }
        .lang-option.active { color: var(--accent); }
        .lang-option img { border-radius: 2px; flex-shrink: 0; }
        /* Mobile lang buttons */
        .lang-mobile-btns {
            display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
        }
        .lang-mobile-btn {
            display: flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: white; padding: 10px 18px; border-radius: 8px;
            font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 500;
            cursor: pointer; transition: background 0.2s;
        }
        .lang-mobile-btn:hover, .lang-mobile-btn.active { background: rgba(245,158,11,0.2); color: var(--accent); border-color: var(--accent); }

        /* hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            width: 26px; height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s;
            display: block;
        }

        /* mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--primary);
            z-index: 1001;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.6rem;
            font-weight: 700;
            transition: color 0.2s;
        }
        .mobile-menu a:hover { color: var(--accent); }
        .mobile-close {
            position: absolute;
            top: 24px; right: 28px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
            line-height: 1;
        }

        /* ── TRUSTED BY STRIP ── */
        .trusted-strip {
            background: linear-gradient(90deg, #0a0f1f 0%, #1a1040 50%, #0a0f1f 100%);
            padding: 10px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .trusted-strip-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .trusted-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.8);
            font-size: 0.78rem;
            font-weight: 500;
            white-space: nowrap;
        }
        .trusted-item .star { color: #f59e0b; font-size: 0.9rem; }
        .trusted-divider {
            width: 1px; height: 18px;
            background: rgba(255,255,255,0.18);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            background:
                linear-gradient(
                    160deg,
                    rgba(10, 15, 30, 0.78)   0%,
                    rgba(10, 37, 69, 0.55)  40%,
                    rgba(15, 10, 30, 0.65)  70%,
                    rgba(10, 15, 30, 0.80) 100%
                ),
                url('/images/YourKrakow Tours.webp') center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 24px 60px;
            position: relative;
            overflow: hidden;
        }

        /* Amber glow top-right - keeps brand warmth over the photo */
        .hero::before {
            content: '';
            position: absolute;
            width: 700px; height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,158,11,0.22), transparent 65%);
            top: -180px; right: -200px;
            filter: blur(40px);
            pointer-events: none;
        }
        /* Deep blue glow bottom-left */
        .hero::after {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 65%);
            bottom: -120px; left: -150px;
            filter: blur(40px);
            pointer-events: none;
        }

        .hero-content { position: relative; z-index: 1; max-width: 820px; }

        .hero-badge {
            display: inline-block;
            background: rgba(245,158,11,0.18);
            border: 1px solid rgba(245,158,11,0.45);
            color: var(--accent);
            padding: 6px 22px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 28px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2.6rem, 6.5vw, 5.2rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.08;
            margin-bottom: 22px;
            letter-spacing: -1px;
        }
        .hero h1 span { color: var(--accent); }

        .hero p {
            font-size: clamp(1rem, 2.4vw, 1.2rem);
            color: rgba(255,255,255,0.72);
            margin-bottom: 44px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            padding: 16px 40px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .btn-primary:hover {
            background: #fbbf24;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245,158,11,0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 40px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.35);
            display: inline-block;
        }
        .btn-secondary:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

        /* ── STATS ── */
        .stats-bar {
            background: var(--secondary);
            padding: 28px 32px;
            display: flex;
            justify-content: center;
            gap: 56px;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center; color: white;
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .stat-item.counted { opacity: 1; transform: translateY(0); }
        .stat-item:nth-child(2) { transition-delay: 0.15s; }
        .stat-item:nth-child(3) { transition-delay: 0.3s; }
        .stat-item:nth-child(4) { transition-delay: 0.45s; }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        /* ── SECTIONS ── */
        section { padding: 88px 24px; }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-tag {
            display: inline-block;
            background: rgba(245,158,11,0.1);
            color: var(--accent-dark);
            padding: 4px 18px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 14px;
        }
        .section-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .section-header p {
            color: var(--text-light);
            font-size: 1rem;
            max-width: 540px;
            margin: 0 auto;
        }

        /* ── TOURS ── */
        #tours { background: var(--light-bg); }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ── SCROLL ANIMATIONS ── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        .tour-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .tour-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-shadow-hover);
            border-color: rgba(245,158,11,0.3);
        }

        /* Tour image gradient areas */
        .tour-img {
            height: 190px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Shimmer on hover */
        .tour-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
            background-size: 200% 100%;
            background-position: -200% 0;
            transition: background-position 0s;
        }
        .tour-card:hover .tour-img::after {
            background-position: 200% 0;
            transition: background-position 0.7s ease;
        }

        /* Individual tour gradients */
        .tour-img-tatra       { background: linear-gradient(145deg, #1a3a5c 0%, #2563a0 45%, #3b82c4 70%, #1e4d80 100%); }
        .tour-img-zakopane    { background: linear-gradient(145deg, #1c3b5a 0%, #1e6091 40%, #2980b9 65%, #16405c 100%); }
        .tour-img-auschwitz   { background: linear-gradient(145deg, #2c2c2c 0%, #4a4a4a 40%, #3d3d3d 65%, #1a1a1a 100%); }
        .tour-img-saltmine    { background: linear-gradient(145deg, #1e0a4a 0%, #3b1578 45%, #5b2d9e 70%, #2a0f5e 100%); }
        .tour-img-memory      { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 65%, #1a1a2e 100%); }
        .tour-img-nowahuta    { background: linear-gradient(145deg, #1c2333 0%, #2d3748 40%, #4a5568 65%, #1a2030 100%); }
        .tour-img-wadowice    { background: linear-gradient(145deg, #3d0a0a 0%, #6b1515 40%, #8b2020 65%, #4a0f0f 100%); }
        .tour-img-czestochowa { background: linear-gradient(145deg, #2a1a0a 0%, #5c3a10 40%, #8b5a1a 65%, #3d2508 100%); }
        .tour-img-shooting    { background: linear-gradient(145deg, #1a1a1a 0%, #333333 40%, #555555 65%, #222222 100%); }

        .badge-tickets {
            position: absolute;
            top: 14px; right: 14px;
            background: #22c55e;
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 1;
        }

        .tour-icon-wrap {
            position: relative;
            z-index: 1;
            width: 72px; height: 72px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .tour-body { padding: 22px; }
        .tour-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .tour-features {
            list-style: none;
            margin-bottom: 18px;
        }
        .tour-features li {
            font-size: 0.83rem;
            color: var(--text-light);
            padding: 3px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .tour-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f1f5f9;
            padding-top: 16px;
        }
        .tour-duration {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .tour-price {
            font-size: 1.1rem;
            font-weight: 800;
        }
        .tour-price small {
            font-size: 0.72rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .btn-book {
            width: 100%;
            margin-top: 14px;
            background: var(--primary);
            color: white;
            padding: 12px;
            border-radius: var(--radius-sm);
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: block;
        }
        .btn-book:hover { background: var(--accent); color: var(--primary); }

        /* ── HOW IT WORKS ── */
        #howitworks { background: white; }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: calc(16.66% + 44px);
            width: calc(33.33% - 88px);
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            z-index: 0;
        }
        .steps-grid::after {
            content: '';
            position: absolute;
            top: 40px;
            left: calc(50% + 44px);
            width: calc(33.33% - 88px);
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-icon {
            width: 80px; height: 80px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            box-shadow: 0 8px 24px rgba(245,158,11,0.35);
            text-shadow: 0 2px 6px rgba(0,0,0,0.25);
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -6px; right: -6px;
            width: 26px; height: 26px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 0.72rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        .step-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .step-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ── TRANSFERS ── */
        #transfers { background: var(--light-bg); }

        .transfers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        .transfer-card {
            background: white;
            border-radius: var(--radius);
            padding: 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .transfer-card:hover {
            border-color: var(--accent);
            background: white;
            box-shadow: var(--card-shadow);
            transform: translateY(-3px);
        }

        .transfer-icon { font-size: 2rem; }
        .transfer-card h3 { font-size: 1rem; font-weight: 700; }

        .transfer-meta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .transfer-meta span {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .transfer-price {
            font-size: 1.25rem;
            font-weight: 800;
            margin-top: 4px;
        }
        .transfer-price small {
            font-size: 0.74rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .btn-transfer {
            background: var(--primary);
            color: white;
            padding: 11px;
            border-radius: var(--radius-sm);
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            margin-top: auto;
        }
        .btn-transfer:hover { background: var(--accent); color: var(--primary); }

        /* ── BOOK A RIDE ── */
        #ride { background: var(--primary); }
        #ride .section-header h2 { color: white; }
        #ride .section-header p { color: rgba(255,255,255,0.55); }
        #ride .section-tag { background: rgba(245,158,11,0.18); color: var(--accent); }

        /* Availability banner */
        .ride-avail-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(90deg, rgba(34,197,94,0.12), rgba(34,197,94,0.22), rgba(34,197,94,0.12));
            border: 1px solid rgba(34,197,94,0.35);
            border-radius: 50px;
            padding: 12px 28px;
            max-width: 560px;
            margin: 0 auto 48px;
            color: #4ade80;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 0.01em;
        }
        .ride-avail-dot {
            width: 10px; height: 10px;
            background: #22c55e;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
            animation: pulse-green 2s infinite;
        }
        @keyframes pulse-green {
            0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
            70%  { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
            100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
        }

        /* How it works */
        .ride-steps {
            display: flex;
            justify-content: center;
            gap: 0;
            max-width: 780px;
            margin: 0 auto 52px;
            position: relative;
        }
        .ride-steps::before {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(16.66% + 32px);
            width: calc(33.33% - 64px);
            height: 1px;
            background: rgba(245,158,11,0.25);
        }
        .ride-steps::after {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(50% + 32px);
            width: calc(33.33% - 64px);
            height: 1px;
            background: rgba(245,158,11,0.25);
        }
        .ride-step {
            flex: 1;
            text-align: center;
            padding: 0 12px;
        }
        .ride-step-num {
            width: 56px; height: 56px;
            background: rgba(245,158,11,0.12);
            border: 1.5px solid rgba(245,158,11,0.4);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
        }
        .ride-step h3 {
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
        .ride-step p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.4;
        }

        /* Grid */
        .ride-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1040px;
            margin: 0 auto;
        }

        /* Card */
        .ride-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: var(--radius);
            overflow: hidden;
            color: white;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .ride-card:hover {
            border-color: rgba(245,158,11,0.45);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.35);
        }
        .ride-card-img-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
        }
        .ride-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .ride-card-ribbon {
            position: absolute;
            top: 18px;
            right: -28px;
            background: var(--accent);
            color: #0a0f1f;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 36px;
            transform: rotate(35deg);
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .ride-card-header {
            padding: 16px 20px 14px;
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
        }
        .ride-card-header-left { display: flex; align-items: center; gap: 14px; }
        .ride-emoji {
            display: none;
            font-size: 2.2rem;
            flex-shrink: 0;
            width: 52px; height: 52px;
            background: rgba(245,158,11,0.1);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
        }
        .ride-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: white;
            margin: 0 0 4px;
            line-height: 1.25;
        }
        .ride-card-meta {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
        }
        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(34,197,94,0.14);
            border: 1px solid rgba(34,197,94,0.3);
            color: #4ade80;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .badge-live::before {
            content: '';
            width: 6px; height: 6px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        .ride-body {
            padding: 0 24px 20px;
            flex: 1;
        }
        .ride-features {
            list-style: none;
            margin-bottom: 18px;
            border-top: 1px solid rgba(255,255,255,0.07);
            padding-top: 16px;
        }
        .ride-features li {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.65);
            padding: 4px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .ride-features li::before {
            content: '→';
            color: var(--accent);
            flex-shrink: 0;
        }
        .ride-capacity {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 0.76rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 18px;
        }

        .ride-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.07);
            padding: 14px 24px;
            background: rgba(0,0,0,0.15);
        }
        .ride-price { font-size: 1.15rem; font-weight: 800; color: var(--accent); }
        .ride-price small {
            display: block;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.38);
            font-weight: 400;
            margin-top: 1px;
        }
        .ride-duration {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .ride-btns {
            padding: 16px 24px 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .btn-ride-now {
            width: 100%;
            background: #16a34a;
            color: #fff;
            padding: 13px;
            border-radius: var(--radius-sm);
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.25s;
            display: flex; align-items: center; justify-content: center; gap: 7px;
            text-decoration: none;
        }
        .btn-ride-now:hover { background: #15803d; transform: translateY(-1px); }
        .btn-ride-later {
            display: block;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            text-decoration: none;
            background: transparent;
            color: var(--accent);
            padding: 11px;
            border-radius: var(--radius-sm);
            border: 1.5px solid rgba(245,158,11,0.4);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-ride-later:hover { background: rgba(245,158,11,0.08); border-color: var(--accent); }

        /* ── PHOTO STRIP (mobile only) ── */
        .photo-strip {
            display: none;
        }
        /* ── RIDE BG PHOTOS (desktop) ── */
        #ride { position: relative; overflow: hidden; }
        #ride > * { position: relative; z-index: 1; }
        .ride-bg-photos {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .ride-bg-photo {
            position: absolute;
            border-radius: 12px;
            opacity: 0.18;
            object-fit: cover;
            transition: opacity 0.4s, transform 0.3s;
            pointer-events: auto;
            box-shadow: 0 6px 24px rgba(0,0,0,0.5);
        }
        .ride-bg-photo:hover { opacity: 0.75; transform: scale(1.05) !important; }
        .ride-bg-photo:nth-child(1) { width: 200px; height: 145px; top:  30px; left:  16px; transform: rotate(-7deg); }
        .ride-bg-photo:nth-child(2) { width: 185px; height: 135px; top:  50px; right: 16px; transform: rotate(6deg);  }
        .ride-bg-photo:nth-child(3) { width: 195px; height: 140px; top: 44%;   left:  10px; transform: translateY(-50%) rotate(4deg); }
        .ride-bg-photo:nth-child(4) { width: 190px; height: 138px; bottom: 30px; right: 14px; transform: rotate(-5deg); }
        .ride-bg-photo:nth-child(5) { width: 180px; height: 130px; bottom: 40px; left:  18px; transform: rotate(5deg);  }

        .ride-note {
            text-align: center;
            margin-top: 40px;
            color: rgba(255,255,255,0.28);
            font-size: 0.76rem;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ── CONTACT ── */
        #contact { background: var(--light-bg); }

        .contact-wrap {
            max-width: 1020px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 52px;
            align-items: stretch;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
        }
        .contact-map {
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.1);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            flex: 1;
            min-height: 180px;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
        }

        .contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
        .contact-info > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }
        .contact-ico {
            width: 44px; height: 44px;
            background: #f1f5f9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-ico svg { width: 22px; height: 22px; }
        .contact-ico.ico-wa { background: rgba(37,211,102,0.12); }
        .contact-ico.ico-phone { background: rgba(59,130,246,0.12); }
        .contact-ico.ico-email { background: rgba(245,158,11,0.12); }
        .contact-ico.ico-pin { background: rgba(239,68,68,0.12); }
        .contact-item strong { display: block; font-size: 0.9rem; }
        .contact-item span { font-size: 0.85rem; color: var(--text-light); }

        .contact-form {
            background: white;
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--card-shadow);
        }

        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius-sm);
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            transition: border-color 0.2s;
            outline: none;
            color: var(--text);
            background: white;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus { border-color: var(--accent); }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-group input[type="date"] {
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            min-height: 46px;
            line-height: 1.4;
        }
        .date-wrap { position: relative; }
        .date-wrap input { padding-left: 16px; }
        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            opacity: 0.6;
        }
        .form-group input[type="date"]::-webkit-date-and-time-value {
            text-align: left;
        }

        .btn-submit {
            width: 100%;
            background: var(--accent);
            color: var(--primary);
            padding: 14px;
            border-radius: var(--radius-sm);
            border: none;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245,158,11,0.35);
        }

        /* ── FOOTER ── */
        footer {
            background: var(--primary);
            color: rgba(255,255,255,0.55);
            padding: 52px 24px 28px;
            text-align: center;
        }
        .footer-logo { font-size: 1.9rem; font-weight: 800; color: white; margin-bottom: 6px; }
        .footer-logo span { color: var(--accent); }
        footer > p { margin-bottom: 28px; font-size: 0.88rem; }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 0.84rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--accent); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            font-size: 0.78rem;
        }

        /* ── WHATSAPP FLOAT ── */
        .wa-float {
            position: fixed;
            bottom: 28px; right: 28px;
            width: 62px; height: 62px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 0;
            text-decoration: none;
            z-index: 998;
            box-shadow: 0 6px 24px rgba(37,211,102,0.45);
            animation: waPulse 2.5s infinite;
            transition: transform 0.2s;
        }
        .wa-float:hover { transform: scale(1.12); }
        @keyframes waPulse {
            0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
            50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
        }

        /* ── MODAL ── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.72);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .modal-overlay.open { display: flex; }

        .modal {
            background: white;
            border-radius: var(--radius);
            padding: 36px;
            max-width: 460px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }
        .modal-close {
            position: absolute;
            top: 16px; right: 18px;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--text-light);
            line-height: 1;
            font-family: inherit;
        }
        .modal h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
        .modal-price {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent-dark);
            margin-bottom: 24px;
        }
        .modal-tour-link {
            display: block;
            text-align: center;
            margin-bottom: 18px;
            color: var(--accent-dark);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
        }
        .modal-tour-link:hover { text-decoration: underline; }

        /* Success state */
        .modal-success {
            display: none;
            text-align: center;
            padding: 20px 0;
        }
        .modal-success.show { display: block; }
        .modal-form.hide { display: none; }
        .success-icon {
            font-size: 3.5rem;
            margin-bottom: 16px;
            display: block;
        }
        .success-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: #16a34a; }
        .success-sub { font-size: 0.9rem; color: var(--text-light); }

        .nav-cart-mobile {
            display: none;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .ride-bg-photos { display: none; }
            .photo-strip {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 20px 16px;
                background: var(--primary);
                border-top: 1px solid rgba(255,255,255,0.06);
            }
            .photo-strip::-webkit-scrollbar { display: none; }
            .photo-strip-track {
                display: flex;
                gap: 10px;
                width: max-content;
            }
            .photo-strip-track img {
                height: 120px;
                width: 170px;
                object-fit: cover;
                border-radius: 10px;
                flex-shrink: 0;
            }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .nav-cart-mobile {
                display: flex;
                align-items: center;
                gap: 5px;
                color: var(--accent);
                font-weight: 700;
                font-size: 0.82rem;
                text-decoration: none;
                white-space: nowrap;
                padding: 5px 10px;
                border: 1px solid rgba(245,158,11,0.4);
                border-radius: 20px;
                background: rgba(245,158,11,0.08);
            }
            section { padding: 64px 16px; }
            .stats-bar { gap: 28px; }
            .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
            .hero-btns { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
            .steps-grid { grid-template-columns: 1fr; gap: 28px; }
            .steps-grid::before, .steps-grid::after { display: none; }
            .trusted-divider { display: none; }
        }
        @media (max-width: 768px) {
            /* All tour cards visible on mobile */
            #toursMoreBtnWrap { display: none !important; }
            #toursMobileBtnWrap { display: block !important; }
        }
        @media (max-width: 480px) {
            .tours-grid, .transfers-grid, .ride-grid { grid-template-columns: 1fr; }
            .ride-steps { flex-direction: column; gap: 24px; }
            .ride-steps::before, .ride-steps::after { display: none; }
            .ride-avail-banner { font-size: 0.82rem; padding: 10px 18px; }
        }

        /* ── BLOG WIDGET ── */
        #blog { background: var(--light-bg); }
        .blog-carousel-wrap { position: relative; }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .blog-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
            opacity: 0;
            animation: blogFadeIn 0.4s ease forwards;
        }
        @keyframes blogFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-shadow-hover);
        }
        .blog-card-thumb {
            height: 190px;
            overflow: hidden;
        }
        .blog-card-img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.3s;
        }
        .blog-card:hover .blog-card-img { transform: scale(1.04); }
        .blog-card-placeholder {
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #0a0f1f 0%, #0f2545 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 2.5rem; opacity: 0.5;
        }
        .blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .blog-card-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 8px; }
        .blog-card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
        .blog-card-excerpt {
            font-size: 0.85rem; color: var(--text-light); line-height: 1.55;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
            overflow: hidden; flex: 1; margin-bottom: 14px;
        }
        .blog-card-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
        .blog-nav {
            display: flex; align-items: center; justify-content: center;
            gap: 16px; margin-top: 32px;
        }
        .blog-nav-btn {
            width: 44px; height: 44px; border-radius: 50%;
            border: 2px solid rgba(0,0,0,0.12); background: white;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.2s;
            font-size: 1.1rem; color: var(--text);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .blog-nav-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); background: #fffbf0; }
        .blog-nav-btn:disabled { opacity: 0.3; cursor: default; }
        .blog-nav-dots {
            display: flex; gap: 8px; align-items: center;
        }
        .blog-nav-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: rgba(0,0,0,0.15); transition: all 0.3s; cursor: pointer;
        }
        .blog-nav-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
        .blog-view-all {
            text-align: center; margin-top: 20px;
        }
        .blog-view-all a {
            display: inline-block;
            padding: 14px 36px;
            border: 2px solid rgba(0,0,0,0.15);
            border-radius: 12px;
            font-weight: 600; font-size: 0.95rem;
            color: var(--text); text-decoration: none;
            transition: all 0.2s;
        }
        .blog-view-all a:hover { border-color: var(--accent); color: var(--accent); }
        @media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
        @media (prefers-reduced-motion: reduce) {
            .reveal, .stat-item, .blog-card { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
            .stat-item.counted { opacity: 1; }
        }

        /* ═══════════════════════════════════════════════════════
           MOBILE UX FIXES — only affect viewport <= 768px
           ═══════════════════════════════════════════════════════ */
        @media (max-width: 768px) {
            /* Prevent iOS zoom on form focus (inputs must be >= 16px) */
            .form-group input,
            .form-group select,
            .form-group textarea { font-size: 16px; }
            /* Reduce contact form padding on mobile */
            .contact-form { padding: 20px; }
            /* Smaller font on readable mobile small-text */
            .lang-btn-arrow { font-size: 0.75rem; }
            .tour-price small { font-size: 0.82rem; }
            /* Photo strip — adaptive image width */
            .photo-strip-track img { width: clamp(140px, 45vw, 170px); height: 110px; }
        }
        @media (max-width: 480px) {
            /* Hero on small phones — prevent overflow */
            .hero { min-height: 85vh; padding: 100px 16px 60px; }
            /* Ride banner — tighter padding on 320px */
            .ride-avail-banner { padding: 8px 12px; font-size: 0.8rem; }
            /* Blog cards — adaptive thumbnail height */
            .blog-card-thumb { height: clamp(160px, 40vw, 200px); }
        }
