@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Inter:wght@300;400;600;700&display=swap');
        
        :root {
            --primary: #3b82f6;
            --accent: #6366f1;
            --bg-dark: #020617;
        }

        body { font-family: 'Inter', sans-serif; background-color: var(--bg-dark); color: #f1f5f9; scroll-behavior: smooth; }
        .font-magic { font-family: 'Cinzel', serif; }
        
        .hero-section {
            position: relative;
            background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 1)), 
                              url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
        }

        .glass-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-card:hover {
            border-color: rgba(59, 130, 246, 0.4);
            transform: translateY(-8px);
            background: rgba(15, 23, 42, 0.8);
        }

        .btn-glow {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
        }

        .btn-glow:hover {
            box-shadow: 0 0 35px rgba(59, 130, 246, 0.6);
            transform: scale(1.05);
        }

        .text-gradient {
            background: linear-gradient(to right, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .adventure-card {
            position: relative;
            overflow: hidden;
        }

        .adventure-card img {
            transition: transform 0.5s ease;
        }

        .adventure-card:hover img {
            transform: scale(1.1);
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:last-child { border-bottom: none; }

        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 1.5rem;
        }

        .faq-item.active .chevron {
            transform: rotate(180deg);
        }

        .category-pill {
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .step-indicator {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            border: 2px solid #1e293b;
        }

        .step-active {
            border-color: var(--primary);
            background: var(--primary);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }

        .booking-option {
            cursor: pointer;
            transition: all 0.3s ease;
            border-color: transparent;
        }

        .booking-option:hover {
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(30, 41, 59, 0.4);
        }

        .booking-option.selected {
            border-color: var(--primary) !important;
            background: rgba(59, 130, 246, 0.1);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
        }

        .day-btn {
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .day-btn.selected {
            background-color: var(--primary);
            color: white;
            font-weight: bold;
            border-color: var(--primary);
        }

        .time-btn.selected {
            border-color: var(--primary);
            background: rgba(59, 130, 246, 0.2);
        }