@charset "utf-8";
/* CSS Document */
:root {
            --primary-navy: #0A192F;
            --deep-ice: #0F2B48;
            --polar-blue: #1E4976;
            --glacier-cyan: #00D2FF;
            --ice-white: #F0F8FF;
            --gold-accent: #D4AF37;
            --gold-hover: #F3E5AB;
            --text-main: #E2E8F0;
            --text-muted: #94A3B8;
            --card-bg: rgba(15, 43, 72, 0.65);
            --border-glass: rgba(255, 255, 255, 0.15);
        }

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

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--primary-navy);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Canvas Snow Background */
        #snow-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 2;
        }

        /* Typography */
        h1, h2, h3, h4, .brand-font {
            font-family: 'Cinzel', serif;
            letter-spacing: 1px;
        }

        /* Navigation Header */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 0.8rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 25, 47, 0.90);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-glass);
        }

        .brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .brand img {
            height: 65px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
            transition: transform 0.3s ease;
        }

        .brand img:hover {
            transform: scale(1.03);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .nav-links a:hover {
            color: var(--glacier-cyan);
        }

        /* Nav Dropdown Desktop Styles */
        .dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }

        .dropdown .dropbtn {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(10, 25, 47, 0.95);
            min-width: 170px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            z-index: 1001;
            overflow: hidden;
            margin-top: 1px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            padding: 12px 16px;
            display: block;
            color: var(--text-main);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.9rem;
        }

        .dropdown-content a:hover {
            background: rgba(0, 210, 255, 0.1);
            color: var(--glacier-cyan);
            padding-left: 20px;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }

        /* Buttons */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold-accent), #B8860B);
            color: #000;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--gold-hover), var(--gold-accent));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }

        .btn-block {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
        }

        /* Hero Banner Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(10,25,47,0.5) 0%, rgba(10,25,47,0.95) 100%),
                        url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
            padding: 8rem 8% 5rem;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3.5rem;
            align-items: center;
            max-width: 1300px;
            width: 100%;
            z-index: 3;
        }

        .hero-content {
            text-align: left;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 210, 255, 0.15);
            border: 1px solid var(--glacier-cyan);
            color: var(--glacier-cyan);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.15;
            text-shadow: 0 0 25px rgba(0,0,0,0.8);
        }

        .hero-subheading {
            color: var(--glacier-cyan);
            font-size: 0.55em;
            display: block;
            margin-top: 0.3rem;
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .hero-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .meta-item {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            padding: 1rem 0.8rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .meta-item i {
            color: var(--gold-accent);
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }

        .meta-item span {
            display: block;
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .meta-item strong {
            font-size: 0.95rem;
            color: #fff;
        }

        /* Lead Capture Form Card Overlay */
        .hero-form-card {
            background: rgba(15, 43, 72, 0.80);
            border: 1px solid var(--gold-accent);
            border-radius: 16px;
            padding: 2.2rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.15);
            position: relative;
        }

        .hero-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-accent), var(--glacier-cyan));
            border-radius: 16px 16px 0 0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .form-header h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
        }

        .form-header p {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        .lead-form {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-size: 0.8rem;
            color: var(--text-main);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .form-group label i {
            color: var(--glacier-cyan);
        }

        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(10, 25, 47, 0.85);
            border: 1px solid var(--border-glass);
            color: #fff;
            border-radius: 8px;
            outline: none;
            font-family: inherit;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            border-color: var(--glacier-cyan);
            box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
            background: rgba(10, 25, 47, 0.95);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 85px;
        }

        .form-response {
            display: none;
            padding: 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            text-align: center;
            margin-top: 0.5rem;
        }

        .form-response.success {
            display: block;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid #10B981;
            color: #34D399;
        }

        .form-response.error {
            display: block;
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #EF4444;
            color: #F87171;
        }

        /* Section Global */
        section {
            padding: 6rem 8%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header span {
            color: var(--gold-accent);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-header h2 {
            font-size: 2.4rem;
            color: #fff;
            margin-top: 0.5rem;
        }

        /* Glass Card */
        .glass-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 12px;
            backdrop-filter: blur(12px);
            padding: 2rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .glass-card:hover {
            border-color: rgba(0, 210, 255, 0.4);
        }

        /* Inclusions Grid */
        .inclusions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .inclusion-category-title {
            color: var(--gold-accent);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-glass);
            padding-bottom: 0.75rem;
        }

        .inclusion-list {
            list-style: none;
        }

        .inclusion-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .inclusion-list li i {
            color: var(--glacier-cyan);
            margin-top: 4px;
            font-size: 0.9rem;
        }

        /* Itinerary Section */
        .itinerary-container {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .itinerary-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glass);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .itinerary-header {
            padding: 1.3rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: rgba(30, 73, 118, 0.2);
        }

        .itinerary-header:hover {
            background: rgba(30, 73, 118, 0.4);
        }

        .day-tag {
            background: var(--gold-accent);
            color: #000;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .itinerary-title-wrap {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .itinerary-title-wrap h3 {
            font-size: 1.1rem;
            color: #fff;
        }

        .itinerary-toggle {
            color: var(--glacier-cyan);
            font-size: 1.1rem;
            transition: transform 0.3s;
        }

        .itinerary-card.active .itinerary-toggle {
            transform: rotate(180deg);
        }

        .itinerary-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease;
            padding: 0 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .itinerary-card.active .itinerary-body {
            max-height: 500px;
            padding: 1.5rem;
            border-top: 1px solid var(--border-glass);
        }

        /* Pricing & Flight Calculator Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-badge {
            font-size: 2rem;
            color: var(--gold-accent);
            font-weight: 700;
            margin: 1rem 0;
        }

        .price-sub {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .flight-option {
            background: rgba(10, 25, 47, 0.6);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .flight-option.selected {
            border-color: var(--glacier-cyan);
            background: rgba(0, 210, 255, 0.1);
        }

        .flight-schedule {
            background: rgba(0, 0, 0, 0.25);
            border-radius: 6px;
            padding: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
        }

        .flight-leg {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-glass);
        }

        .calc-card {
            background: linear-gradient(145deg, rgba(15, 43, 72, 0.85), rgba(10, 25, 47, 0.95));
            border: 1px solid var(--gold-accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Policies Section */
        .policy-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-glass);
            color: var(--text-main);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background: var(--glacier-cyan);
            color: #000;
            border-color: var(--glacier-cyan);
        }

        .policy-content {
            display: none;
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-content.active {
            display: block;
        }

        /* Partners Section */
        .partners-section {
            text-align: center;
            border-top: 1px solid var(--border-glass);
            padding-top: 4rem;
        }

        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .partner-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-glass);
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Footer */
        footer {
            background: #050C1A;
            padding: 4rem 8% 2rem;
            border-top: 1px solid var(--border-glass);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

        .footer-logo {
            height: 70px;
            width: auto;
            margin-bottom: 1rem;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.8rem;
        }

        .contact-item i {
            color: var(--gold-accent);
        }

        .contact-item a {
            color: var(--text-main);
            text-decoration: none;
        }

        .contact-item a:hover {
            color: var(--glacier-cyan);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.8rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .hero-content {
                text-align: center;
            }
            .hero-meta {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 900px) {
            .pricing-grid { grid-template-columns: 1fr; }
        }

        /* Fixed Mobile Nav & Dropdown System */
        @media (max-width: 768px) {
            .navbar { padding: 0.8rem 5%; }
            .brand img { height: 50px; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 25, 47, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 1.5rem 0;
                border-bottom: 1px solid var(--border-glass);
                gap: 1.2rem;
            }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            
            /* Mobile Dropdown Overrides */
            .dropdown {
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            
            .dropdown-content {
                position: static;
                display: none;
                background: transparent;
                border: none;
                box-shadow: none;
                min-width: 100%;
                margin-top: 10px;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .dropdown-content a {
                text-align: center;
                padding: 10px;
            }

            .hero { padding: 7rem 5% 4rem; }
            .hero h1 { font-size: 2.5rem; }
            .hero-meta { grid-template-columns: 1fr; }
            .hero-form-card { padding: 1.5rem; }
            section { padding: 4rem 5%; }
        }

