:root {
    --indigo: #1b0088;
    --coral: #eb505a;
    --white: #ffffff;
    --gray-cool: #f8f9fc;
    --latam-gradient: linear-gradient(135deg, #1b0088 0%, #eb505a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--indigo);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--coral);
}

.bg-indigo {
    background-color: var(--indigo);
}

.bg-coral {
    background-color: var(--coral);
}

.text-coral {
    color: var(--coral);
}

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

/* Cursor */
.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
}

/* Hero Parallax */
.hero-bg {
    background-image: linear-gradient(to bottom, rgba(27, 0, 136, 0.2), rgba(27, 0, 136, 0.4), rgba(11, 0, 51, 0.8)),
        url('assets/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 120vh;
    filter: contrast(1.1) saturate(1.1) brightness(0.9);
}

/* Hero Text Styles */
.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-title {
    position: relative;
}

.hero-text-line {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: white;
    line-height: 0.95;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-top: 2rem;
}

.hero-cta {
    backdrop-filter: blur(10px);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horizontal-wrapper {
    width: 500vw;
    /* Changed from 500% to match children 100vw exactly */
    display: flex;
    flex-wrap: nowrap;
}

.section-full {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Reveal Animation Styles */
.reveal-mask {
    clip-path: inset(0 100% 0 0);
}

.split-parent {
    overflow: hidden;
}

.split-child {
    transform: translateY(100%);
}

/* Fleet Section Custom Styling */
.fleet-card {
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.fleet-card:hover {
    transform: translateY(-20px);
}

.section-title {
    font-size: clamp(3rem, 8vw, 10rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* Custom UI Elements */
.btn-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--coral);
    color: var(--coral);
    transition: all 0.4s ease;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--coral);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    left: 0;
}

.btn-premium:hover {
    color: white;
}

/* New Hero Text Layout */
.hero-text-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    position: relative;
    top: 15vh;
}

.hero-text-side {
    flex: 1;
    font-weight: 300;
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    letter-spacing: 0.15em;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Make the right side bold for contrast */
.hero-text-side.text-right {
    font-weight: 800;
}

.text-left {
    text-align: right;
    padding-right: 40px;
}

.text-right {
    text-align: left;
    padding-left: 40px;
}

@media (max-width: 1024px) {
    .hero-text-container {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        top: 5vh;
    }

    .text-left,
    .text-right {
        text-align: center;
        padding: 0;
    }
}

/* Minimalist Hero Paragraph */
.hero-para {
    position: relative;
    top: 100px;
    /* Positioned clearly below the plane */
    left: auto;
    display: inline-block;

    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);

    /* Removed Glass Pill Style */
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;

    transition: all 0.5s ease;
}

.hero-para:hover {
    color: white;
    letter-spacing: 0.5em;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Dark Nav State for Light Sections */
.glass-nav.nav-dark {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(27, 0, 136, 0.1);
}

.glass-nav.nav-dark a {
    color: var(--indigo) !important;
}

.glass-nav.nav-dark a:hover {
    color: var(--coral) !important;
}