        :root {
            --color-black: #000000;
            --color-navy: #000435;
            --color-navy-light: #020202;
            --color-gold: #27eef5;
            --color-gold-light: #89edf0;
            --color-white: #ffffff;
            --color-off-white: #f5f0eb;
            --color-gray: #6b7a8f;
            --color-text: #1e2a3a;
            --font-serif: 'Andada Pro', serif;
            --font-sans: 'Outfit', sans-serif;
            --transition: 0.3s ease;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            --radius: 12px;
        }

        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--color-text);
            background: var(--color-off-white);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-sans);
            text-align: center;
        }

        .btn-primary {
            background: var(--color-gold);
            color: var(--color-black);
        }
        .btn-primary:hover {
            background: var(--color-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }
        .btn-outline:hover {
            background: var(--color-white);
            color: var(--color-navy);
        }

        .btn-dark {
            background: var(--color-black);
            color: var(--color-white);
        }
        .btn-dark:hover {
            background: var(--color-navy-light);
            transform: translateY(-2px);
        }

        /* ===== HEADER / NAV ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        header.scrolled {
            background: rgba(1, 1, 1, 0.81);
            backdrop-filter: blur(12px);
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: var(--font-sans);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-white);
            letter-spacing: 1px;
            font-style: italic;
        }
        .logo span {
            color: var(--color-gold);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: var(--color-white);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-gold);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.btn {
            padding: 10px 24px;
        }
        .nav-links a.btn::after {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--color-white);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-white);
            padding: 120px 24px 80px;
            background:
                linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(6, 6, 6, 0.5)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Crect width="100" height="100" fill="%230a1128"/%3E%3Ccircle cx="30" cy="40" r="2" fill="%23d4af37" opacity="0.3"/%3E%3Ccircle cx="70" cy="60" r="3" fill="%23d4af37" opacity="0.2"/%3E%3Ccircle cx="50" cy="20" r="1.5" fill="%23fff" opacity="0.4"/%3E%3C/svg%3E'),
                radial-gradient(ellipse at 30% 40%, #1a3a5a 0%, #0a1128 70%);
            background-size: cover, 120px 120px, cover;
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.1);
    z-index:1;
}
.hero-content {
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
}

        .hero-badge {
            display: inline-block;
            background: rgba(2, 2, 2, 0.15);
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: var(--font-sans);
            font-size: clamp(2.8rem, 10vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .hero h1 i {
            font-style: italic;
            color: var(--color-gold);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 32px;
            opacity: 0.9;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px 40px;
            margin-top: 24px;
            font-size: 0.95rem;
        }
        .hero-features span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-features i {
            color: var(--color-gold);
            font-size: 1.1rem;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== SECTION COMMON ===== */
            .read-more{
            font-family: var(--font-sans);
            color: var(--color-text);
            background-color: var(--color-off-white);
            line-height: 1.6;
        }
           section {
            padding: 80px 0;
        }

        .section-label {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--color-black);
            margin-bottom: 8px;
        }
        .section-label-light {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--color-white);
            margin-bottom: 8px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 1.1rem;
            color: var(--color-gray);
            max-width: 640px;
            margin-bottom: 48px;
        }

        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== GUARANTEE ===== */
        .guarantee {
            background: var(--color-black);
            color: var(--color-white);
            text-align: center;
        }
        .guarantee .section-title {
            color: var(--color-gold);
        }
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }
        .guarantee-item i {
            font-size: 2.4rem;
            color: var(--color-gold);
            margin-bottom: 12px;
        }
        .guarantee-item h4 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .guarantee-item p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        /* ===== TOUR CARDS ===== */
        .tour-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 16px;
        }

        .tour-card {
            background: var(--color-white);
            border-radius: var(--radius);
            padding: 40px 32px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .tour-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .tour-card .badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--color-gold);
            color: var(--color-black);
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tour-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .tour-card .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-black);
            margin: 8px 0 4px;
        }
        .tour-card .price small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--color-gray);
        }

        .tour-card ul {
            list-style: none;
            margin: 20px 0 28px;
            flex: 1;
        }
        .tour-card ul li {
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .tour-card ul li i {
            color: var(--color-gold);
            width: 20px;
            text-align: center;
        }

        .tour-card .btn {
            width: 100%;
            margin-top: auto;
        }

        .tour-card .military-note {
            font-size: 0.85rem;
            color: var(--color-gray);
            margin-top: 12px;
            text-align: center;
        }

        /* ===== PROCESS ===== */
        .process {
            background: var(--color-black);
            color: var(--color-white);
        }
        .process .section-title {
            color: var(--color-white);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-top: 40px;
            counter-reset: step;
        }
        .step {
            text-align: center;
            position: relative;
        }
        .step::before {
            counter-increment: step;
            content: '0' counter(step);
            display: block;
            font-family: var(--font-serif);
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--color-gold);
            opacity: 0.5;
            margin-bottom: 8px;
        }
        .step h4 {
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .step p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ===== FEATURES ICON GRID ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .feature-icon {
            text-align: center;
            padding: 20px 12px;
            background: var(--color-white);
            color: var(--color-black);
            border-radius: var(--radius);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .feature-icon:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .feature-icon i {
            font-size: 2.2rem;
            color: var(--color-gold);
            margin-bottom: 8px;
        }
        .feature-icon span {
            font-size: 0.85rem;
            font-weight: 500;
            display: block;
        }

        /* ===== WHY FAIRBANKS ===== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .why-item {
            background: var(--color-white);
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            text-align: center;
            border-left: 4px solid var(--color-gold);
        }
        .why-item i {
            font-size: 1.8rem;
            color: var(--color-gold);
            margin-bottom: 8px;
        }
        .why-item h4 {
            font-size: 1rem;
        }
        .why-item p {
            font-size: 0.9rem;
            color: var(--color-gray);
        }

        /* ===== auroralist ===== */
        .auroralist {
            background-color: var(--color-off-white);
        }
        .auroralist-slider {
            display: grid;
            grid-template-rows: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 24px;
        }
        .auroralist {
            background-color: var(--color-white);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .auroralist:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .auroralist .stars {
            color: var(--color-gold);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .auroralist blockquote {
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .auroralist .author {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .auroralist .location {
            font-size: 0.85rem;
            color: var(--color-gray);
        }

        /* ===== CTA ===== */
        .cta {
            background: linear-gradient(135deg, var(--color-black), #0d1f3c);
            color: var(--color-white);
            text-align: center;
        }
        .cta .section-title {
            color: var(--color-white);
        }
        .cta .btn-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #060c1a;
            color: rgba(255, 255, 255, 0.6);
            padding: 40px 0 24px;
            font-size: 0.9rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        footer h4 {
            color: var(--color-white);
            font-size: 1rem;
            margin-bottom: 12px;
        }
        footer a {
            display: block;
            padding: 4px 0;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--color-gold);
        }
        footer .socials {
            display: flex;
            gap: 16px;
            margin-top: 8px;
        }
        footer .socials a {
            font-size: 1.4rem;
        }
        footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--color-black);
                flex-direction: column;
                padding: 80px 32px 32px;
                gap: 20px;
                transition: 0.4s ease;
                box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
                align-items: flex-start;
            }
            .nav-links.open {
                right: 0;
            }
            .hamburger {
                display: flex;
                z-index: 1001;
            }
            .hamburger.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.open span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero h1 {
                font-size: 2.6rem;
            }
            .hero-features {
                gap: 12px 24px;
                font-size: 0.85rem;
            }
            .tour-grid {
                grid-template-columns: 1fr;
            }
            .process-steps {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 500px) {
            .hero {
                padding: 100px 16px 60px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .process-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .testimonial-slider {
                grid-template-columns: 1fr;
            }
            section {
                padding: 56px 0;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .tour-card {
                padding: 28px 20px;
            }
        }