/* ============================================
   EASYTRAVEL PREMIUM DESIGN SYSTEM
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Brand Palette (Extracted from Logo) */
    --brand-orange: #F15A24;
    --brand-orange-light: #FF7E5F;
    --brand-indigo: #4F46E5;
    --brand-indigo-dark: #3730A3;
    --brand-blue: #22D3EE;
    --brand-gold: #FFC107;

    /* Legacy mapping for compatibility */
    --navy: #001F3F;
    --navy-deep: #00122A;
    --navy-light: #003366;
    --azure: var(--brand-indigo);
    --azure-light: var(--brand-blue);
    --gold: var(--brand-orange);
    --gold-soft: var(--brand-gold);
    --gold-dark: #D34515;

    /* Neutral Palette */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --mid-gray: #ADB5BD;
    --dark-gray: #495057;
    --charcoal: #212529;

    /* Semantic */
    --success: #2ECC71;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border-light: rgba(255, 255, 255, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--navy-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

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

/* --- Utility Classes --- */
.text-accent {
    color: var(--brand-orange);
}

.text-indigo {
    color: var(--brand-indigo);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow i {
    font-size: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--mid-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-deep);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    animation: preloaderFloat 2s ease-in-out infinite;
    margin: 0 auto 24px;
    display: block;
}

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.preloader-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 12px;
    color: var(--white);
    margin-bottom: 20px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--azure));
    border-radius: 3px;
    animation: preloaderFill 2s var(--ease-out) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ============================================
   SVG FLIGHT PATH
   ============================================ */
#flight-path-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

#animated-plane {
    position: fixed;
    z-index: 1001; /* Above navbar for experiential feel */
    pointer-events: none;
    filter: drop-shadow(0 0 12px rgba(241, 90, 36, 0.6));
    will-change: transform;
    opacity: 0;
}

.plane-trail {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 60px;
    height: 2px;
    background: linear-gradient(to left, rgba(255,215,0,0.6), transparent);
    transform: translateY(-50%);
}

/* ============================================
   NAVBAR
   ============================================ */
.brand-logo-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

#main-nav {
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
    z-index: 1000;
    background: transparent;
}

#main-nav.scrolled {
    padding: 12px 0;
    background: rgba(0, 18, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.navbar-brand strong {
    font-weight: 800;
}

.brand-icon {
    color: var(--gold);
    font-size: 1.4rem;
    transform: rotate(-45deg);
    transition: transform 0.4s var(--ease-spring);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(0deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep) !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 28px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--navy-deep) !important;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 6px;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.toggler-icon span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('assets/images/hero-bg.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    z-index: 5;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 18, 42, 0.92) 0%,
        rgba(0, 31, 63, 0.85) 40%,
        rgba(0, 51, 102, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--azure-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 60px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    color: var(--navy-deep);
}

.btn-hero-primary i {
    transition: transform 0.3s var(--ease-out);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--gold);
    font-size: 1.2rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Hero floating particles */
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    z-index: 5;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s var(--ease-out);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.04);
}

.about-image-accent {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(8px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-size: 1.2rem;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--navy);
    position: relative;
    z-index: 5;
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 116, 217, 0.08));
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -28px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 36px;
    transform: rotate(45deg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.15), rgba(79, 70, 229, 0.1));
    border: 1px solid rgba(241, 90, 36, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-orange);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s var(--ease-out);
}

.service-link:hover {
    color: var(--gold-soft);
    gap: 12px;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
    z-index: 5;
}

.destination-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.5s var(--ease-out);
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 18, 42, 0.9));
}

.destination-content {
    padding: 24px;
    position: relative;
}

.destination-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.destination-location {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.destination-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.destination-price strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.naira {
    position: relative;
    display: inline-block;
    font-style: normal;
    margin-right: 1px;
}

.naira::before,
.naira::after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    height: 1.5px;
    background: currentColor;
}

.naira::before {
    top: 35%;
}

.naira::after {
    top: 50%;
}

.destination-book-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s var(--ease-out);
}

.destination-book-btn:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-gold);
    color: var(--navy-deep);
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner-section {
    padding: 80px 0;
    background: var(--navy-deep);
    position: relative;
    z-index: 5;
}

.cta-banner-card {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 35%, #1a3a5c 65%, #0d2847 100%);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(241, 90, 36, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 32px;
}

.cta-banner-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-bg-icon {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.04);
}

.cta-bg-icon.icon-1 { top: 10%; left: 5%; transform: rotate(-20deg); font-size: 8rem; }
.cta-bg-icon.icon-2 { bottom: 10%; right: 10%; font-size: 10rem; }
.cta-bg-icon.icon-3 { top: 20%; right: 15%; font-size: 5rem; }

.cta-banner-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 18px 48px;
    border-radius: 60px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.35);
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 48px rgba(255, 215, 0, 0.5);
    color: var(--navy-deep);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    z-index: 5;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(0, 116, 217, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-info-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-floating-custom {
    position: relative;
    margin-bottom: 0;
}

.form-floating-custom .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: 18px 20px 8px;
    height: auto;
    transition: all 0.3s var(--ease-out);
}

.form-floating-custom .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

.form-floating-custom .form-control::placeholder {
    color: transparent;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.form-floating-custom textarea ~ label {
    top: 20px;
    transform: none;
}

.form-floating-custom .form-control:focus ~ label,
.form-floating-custom .form-control:not(:placeholder-shown) ~ label {
    top: 10px;
    transform: none;
    font-size: 0.7rem;
    color: var(--gold);
}

.form-floating-custom textarea {
    min-height: 120px;
    resize: vertical;
}

.form-floating-custom select option {
    background: var(--navy-deep);
    color: var(--white);
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    margin-top: 8px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.45);
}

.btn-form-submit .btn-icon {
    transition: transform 0.3s var(--ease-out);
}

.btn-form-submit:hover .btn-icon {
    transform: translateX(4px) rotate(-15deg);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 0;
    position: relative;
    z-index: 5;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand strong {
    font-weight: 800;
}

.footer-brand .brand-icon {
    color: var(--gold);
    font-size: 1.3rem;
    transform: rotate(-45deg);
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 320px;
}

.footer-heading {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    will-change: transform, opacity;
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .about-image {
        height: 350px;
    }

    .cta-banner-card {
        padding: 60px 30px;
    }

    .navbar-collapse {
        background: rgba(0, 18, 42, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 16px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    #flight-path-svg,
    #animated-plane {
        display: none !important;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        text-align: center;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .destination-image {
        height: 200px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Selection */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--white);
}

/* ============================================
   CONTACT & CTA LINKS
   ============================================ */
.contact-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.contact-link:hover {
    color: var(--brand-orange) !important;
    transform: translateX(4px);
}

.contact-link p {
    margin-bottom: 0;
}

.footer-contact a {
    transition: all 0.3s var(--ease-out);
    color: rgba(255,255,255,0.7);
    display: inline-block;
}

.footer-contact a:hover {
    color: var(--brand-orange) !important;
    transform: translateX(5px);
}
