        :root {
            --primary: #5b21b6;
            --primary-dark: #4c1d95;
            --primary-light: #a78bfa;
            --accent: #f59e0b;
            --hero-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
            
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #E5E5E5;
            --gray-300: #D4D4D4;
            --gray-400: #A3A3A3;
            --gray-500: #737373;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;
            
            --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 20px;
            --radius-full: 9999px;
            
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
        body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--gray-800); background: var(--white); overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        ul, ol { list-style: none; }
        
        /* ========== HEADER ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: none;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .logo-group { display: flex; flex-direction: column; gap: 2px; }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .logo-img { height: 50px; width: auto; }
        
        .logo-tagline {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-desktop a {
            font-weight: 500;
            color: var(--gray-700);
            padding: 0.5rem 0;
            position: relative;
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.25s ease;
        }
        
        .nav-desktop a:hover { color: var(--primary-dark); }
        .nav-desktop a:hover::after { width: 100%; }
        
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 0.5rem;
        }
        
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gray-700);
            transition: all 0.15s ease;
        }
        
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
            padding: 1rem 1.5rem;
        }
        
        .nav-mobile.active { display: flex; }
        
        .nav-mobile a {
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-100);
            font-weight: 500;
            color: var(--gray-700);
        }
        
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .mobile-menu-btn { display: flex; }
            .logo-img { height: 40px; }
        }
        
        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 1.5rem 80px;
            overflow: hidden;
        }
        
        /* MOBILE: Compact hero so tours visible in 1 scroll */
        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 100px 1rem 60px;
            }
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
        }
        
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: heroFade 30s infinite;
            transform: scale(1.05);
        }
        
        .hero-slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
        .hero-slide:nth-child(2) { animation-delay: 6s; }
        .hero-slide:nth-child(3) { animation-delay: 12s; }
        .hero-slide:nth-child(4) { animation-delay: 18s; }
        .hero-slide:nth-child(5) { animation-delay: 24s; }
        
        @keyframes heroFade {
            0% { opacity: 0; transform: scale(1.05); }
            3% { opacity: 1; transform: scale(1.05); }
            20% { opacity: 1; transform: scale(1); }
            23% { opacity: 0; transform: scale(1); }
            100% { opacity: 0; transform: scale(1.05); }
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: var(--hero-overlay);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            color: #4c1d95;
            padding: 0 1.5rem;
            padding-bottom: 100px;
        }
        
        .hero-tagline {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .hero-logo-pill {
            display: inline-block;
            background: none;
            backdrop-filter: none;
            border-radius: 0;
            padding: 0;
            margin-bottom: 1.5rem;
            box-shadow: none;
            border: none;
        }
        
        .hero-logo-img {
            height: 336px;
            width: auto;
            max-width: 90%;
            filter: drop-shadow(0 4px 30px rgba(0,0,0,0.4));
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
            line-height: 1.7;
            opacity: 0.95;
            margin-bottom: 2rem;
        }
        
        /* Search Bar */
        .hero-search {
            display: flex;
            gap: 0.5rem;
            max-width: 580px;
            margin: 0 auto 2rem;
            background: var(--white);
            padding: 1rem;
            border-radius: var(--radius-full);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
            animation: searchPulse 3s ease-in-out infinite;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        @keyframes searchPulse {
            0%, 100% { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.3); }
            50% { box-shadow: 0 8px 50px var(--primary), 0 0 0 6px rgba(255, 255, 255, 0.5); }
        }
        
        .search-input-wrap {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-left: 1rem;
        }
        
        .search-icon { font-size: 1.5rem; opacity: 0.6; }
        
        .hero-search input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.1rem;
            color: var(--gray-800);
            background: transparent;
        }
        
        .hero-search input::placeholder { color: var(--gray-400); font-weight: 500; }
        
        .search-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #ffffff;
            font-weight: 700;
            font-size: 1rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            transition: all 0.15s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 560px) {
            .hero-search {
                flex-direction: column;
                border-radius: var(--radius-lg);
                padding: 1rem;
            }
            .search-input-wrap { padding: 0.5rem; }
            .search-btn { width: 100%; }
            .hero-logo-img { height: 216px; }
        }
        
        /* Quick Tags Marquee */
        .quick-tags-wrapper {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        }
        
        .quick-tags {
            display: flex;
            gap: 0.5rem;
            animation: scrollTags 35s linear infinite;
            width: max-content;
        }
        
        .quick-tags:hover { animation-play-state: paused; }
        
        @keyframes scrollTags {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .quick-tags button {
            background: rgba(255,255,255,0.15);
            backdrop-filter: none;
            color: #4c1d95;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.25);
            transition: all 0.15s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        
        .quick-tags button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.05);
        }
        
        /* Trust Bar */
        .trust-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: none;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .trust-item { text-align: center; color: #4c1d95; }
        .trust-number { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; }
        .trust-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
        .trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
        
        @media (max-width: 640px) {
            .trust-bar { gap: 1.5rem; padding: 1rem; }
            .trust-number { font-size: 1.25rem; }
            .trust-label { font-size: 0.625rem; }
        }
        
        /* ========== AREA CARDS SECTION ========== */
        .areas-section {
            padding: 4rem 0;
            background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .section-header h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .section-header p {
            color: var(--gray-500);
            font-size: 1.1rem;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .area-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            aspect-ratio: 16/10;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .area-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }
        
        .area-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }
        
        .area-card:hover .area-card-bg {
            transform: scale(1.08);
        }
        
        .area-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
        }
        
        .area-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            color: white;
        }
        
        .area-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        
        .area-card-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        
        .area-card-count {
            display: inline-block;
            background: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        /* ========== EMAIL CAPTURE SECTION ========== */
        .guide-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .guide-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .guide-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .guide-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }
        
        .guide-section h2 {
            font-family: var(--font-display);
            font-size: 2.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .guide-section p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .guide-form {
            display: flex;
            gap: 0.75rem;
            max-width: 450px;
            margin: 0 auto;
        }
        
        .guide-form input {
            flex: 1;
            padding: 1rem 1.25rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,0.95);
            font-size: 1rem;
            color: var(--gray-800);
        }
        
        .guide-form input::placeholder {
            color: var(--gray-400);
        }
        
        .guide-form button {
            padding: 1rem 1.5rem;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .guide-form button:hover {
            background: #d97706;
            transform: translateY(-2px);
        }
        
        .guide-disclaimer {
            margin-top: 1rem;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.6);
        }
        
        @media (max-width: 640px) {
            .guide-section h2 { font-size: 1.75rem; }
            .guide-form {
                flex-direction: column;
            }
            .guide-form button { width: 100%; }
        }
        
        /* ========== WHY BOOK SECTION ========== */
        .why-section {
            padding: 4rem 0;
            background: var(--white);
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .why-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        
        .why-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .why-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }
        
        .why-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.5;
        }
        
        /* ========== TOURS SECTION ========== */
        .tours-section {
            padding: 3rem 0;
            background: var(--white);
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Filters Bar */
        .filters-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: flex-end;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            border-radius: var(--radius-xl);
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .filter-group label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .filter-group select {
            padding: 0.75rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.95);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-700);
            min-width: 160px;
            cursor: pointer;
        }
        
        .search-inline {
            flex: 1;
            min-width: 200px;
        }
        
        .search-inline input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.95);
        }
        
        .search-inline input::placeholder { color: var(--gray-400); }
        
        .clear-filters {
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #4c1d95;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-md);
            background: transparent;
            transition: all 0.15s ease;
        }
        
        .clear-filters:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        @media (max-width: 768px) {
            .filters-bar { flex-direction: column; }
            .filter-group { width: 100%; }
            .filter-group select { width: 100%; }
            .search-inline { width: 100%; }
        }
        
        /* Results Info */
        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-200);
        }
        
        #results-count {
            color: var(--primary-dark);
            font-weight: 500;
        }
        
        .shuffle-btn {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s ease;
        }
        
        .shuffle-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Tours Grid */
        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .tours-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        /* Tour Card */
        .tour-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08); border: 1px solid #a78bfa;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .tour-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .tour-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .tour-card:hover .tour-image img {
            transform: scale(1.05);
        }
        
        .quality-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1a1a1a;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        /* Price Ribbon */
        .price-ribbon {
            position: absolute;
            top: 12px;
            right: -35px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 6px 40px;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            z-index: 1;
        }
        
        .tour-content {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .tour-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .tour-location {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 500;
        }
        
        .tour-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin: 0 0 0.5rem 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .tour-description {
            font-size: 0.875rem;
            color: #5a6c7d;
            line-height: 1.5;
            margin: 0 0 0.75rem 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }
        
        .tour-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 0.75rem;
        }
        
        .tour-tag {
            background: var(--gray-100);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }
        
        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.75rem;
            border-top: 1px solid var(--gray-200);
            margin-top: auto;
        }
        
        .tour-company {
            font-size: 0.75rem;
            color: var(--gray-500);
            max-width: 50%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .tour-book-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .tour-book-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        /* Load More */
        .load-more-wrap {
            text-align: center;
            margin-top: 2rem;
        }
        
        .load-more-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .load-more-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        
        /* ========== FAQ ========== */
        .faq-section {
            padding: 4rem 0;
            background: var(--off-white);
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--gray-900);
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        
        .faq-item summary {
            padding: 1.25rem;
            font-weight: 600;
            color: var(--gray-800);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
        }
        
        .faq-item summary::-webkit-details-marker { display: none; }
        
        .faq-item summary::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--gray-400);
            transition: transform 0.2s ease;
        }
        
        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }
        
        .faq-item summary:hover { background: var(--gray-100); }
        
        .faq-answer {
            padding: 0 1.25rem 1.25rem;
            color: var(--gray-600);
            line-height: 1.7;
        }
        
        /* ========== FOOTER ========== */
        .footer { 

            background: #ede9fe;
            color: #4c1d95;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand .logo { margin-bottom: 0.5rem; color: #4c1d95; }
        
        .footer-platform-tagline {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }
        
        .footer-tagline { color: #7c3aed; }
        
        .footer-links h4 {
            color: #4c1d95;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-links ul li { margin-bottom: 0.5rem; }
        
        .footer-links a {
            font-size: 0.9375rem;
            transition: color 0.15s ease;
        }
        
        .footer-links a:hover { color: var(--primary-light); }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #c4b5fd;
            text-align: center;
        }
        
        .footer-bottom p {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .footer-brand { grid-column: 1 / -1; text-align: center; }
            .footer-brand .logo { justify-content: center; }
        }
        
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }
        
        /* ========== MOBILE CTA ========== */
        .mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            padding: 1rem;
            background: var(--white);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        }
        
        .mobile-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            min-height: 52px;
        }
        
        @media (max-width: 768px) {
            .mobile-cta.visible { display: block; }
            .footer { 
 padding-bottom: 100px; }
        }
        
        /* FOMO REMOVED - Fake notifications destroy trust */
        
        /* ========== LOADING STATE ========== */
        .loading-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--gray-500);
        }
        
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--gray-200);
            border-top-color: var(--primary);
            border-radius: 0;
            margin: 0 auto 16px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin { to { transform: rotate(360deg); } }
        
        /* ========== MOBILE OPTIMIZATION (83% of traffic) ========== */
        @media (max-width: 768px) {
            /* Compact section spacing */
            .areas-section { padding: 2.5rem 0; }
            .why-section { padding: 2.5rem 0; }
            .guide-section { padding: 3rem 0; }
            .faq-section { padding: 2.5rem 0; }
            
            /* Section headers smaller */
            .section-header { margin-bottom: 1.5rem; }
            .section-header h2 { font-size: 1.5rem; }
            .section-header p { font-size: 0.95rem; }
            
            /* Area cards - 2 columns on tablet, 1 on phone */
            .areas-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 1rem;
                padding: 0 1rem;
            }
            .area-card { aspect-ratio: 4/3; }
            .area-card h3 { font-size: 1.2rem; }
            .area-card-subtitle { font-size: 0.75rem; }
            
            /* Trust bar compact */
            .trust-bar {
                gap: 1rem;
                padding: 1rem 0.5rem;
            }
            
            /* Why cards - 2 columns */
            .why-grid { 
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .why-card { padding: 1rem; }
            .why-icon { font-size: 2rem; }
            .why-card h3 { font-size: 0.95rem; }
            .why-card p { font-size: 0.8rem; }
            
            /* Tour cards - smaller padding */
            .tours-section { padding: 2rem 0; }
            .tour-content { padding: 0.875rem; }
            .tour-title { font-size: 1rem; }
            .tour-description { font-size: 0.8rem; }
        }
        
        @media (max-width: 480px) {
            /* Single column on small phones */
            .areas-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            
            /* Even more compact hero */
            .hero { padding: 90px 1rem 50px; }
            .hero-logo-img { height: 180px; }
            .hero-tagline { font-size: 1rem; }
            
            /* Tour grid single column */
            .tours-grid { 
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        /* Disable hover effects on touch devices */
        @media (hover: none) {
            .area-card:hover { transform: none; }
            .area-card:hover .area-card-bg { transform: none; }
            .tour-card:hover { transform: none; }
            .tour-card:hover .tour-image img { transform: none; }
            .tour-book-btn:hover { transform: none; }
        }
        
        /* Safe area for notched phones */
        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            .mobile-cta {
                padding-bottom: calc(1rem + env(safe-area-inset-bottom));
            }
            .footer {
                padding-bottom: calc(100px + env(safe-area-inset-bottom));
            }
        }

/* ============================================
   TRUST BADGES ON TOUR CARDS
   ============================================ */
.tour-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    margin-top: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #F0F9F8;
    color: #2A9D8F;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.trust-badge::before {
    content: '✓';
    font-weight: 700;
    font-size: 10px;
}

.trust-badge.free-cancel {
    background: #E8F5E9;
    color: #2E7D32;
}

.trust-badge.instant {
    background: #F3E5F5;
    color: #6A1B9A;
}

.trust-badge.local {
    background: #FFF3E0;
    color: #E65100;
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: var(--primary);
    border-top: 1px solid rgba(91, 33, 182, 0.2);
    z-index: 999;
    padding: 0 var(--space-md, 1rem);
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    animation: slideUp 300ms ease-out;
}

.sticky-cta-bar.visible {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-bar button {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    transition: all 150ms ease;
}

.sticky-cta-bar button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
    .sticky-cta-bar {
        display: none !important;
    }
}
