:root {
    /* Main background: Very light, clean gray-blue */
    --bg: #f8fafc; 
    
    /* Card backgrounds: Pure white for high-end elevation */
    --card-bg: #ffffff; 
    
    /* Primary Aero Blue: The main action/brand color */
    --mint: #3f6ac9; 
    
    /* Deep Navy: Used for secondary buttons and heavy headings */
    --violet: #1e293b; 
    
    /* Text: Deep charcoal for the best readability */
    --text-high: #0f172a; 
    
    /* Muted text: For descriptions and helper text */
    --text-low: #64748b; 
    
    /* Glass Effect: Light tint for a modern frosted look */
    --glass: rgba(255, 255, 255, 0.7); 
}

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

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

/* --- NAVIGATION --- */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--glass); /* Use the variable */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 24px;
    z-index: 1000;
}

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

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 1001; /* Stay above mobile menu */
}

.logo span { color: var(--mint); }

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

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

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

.nav-cta {
    background: var(--text-high);
    color: var(--bg);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.mobile-cta { display: none; } /* Hidden on desktop */

/* --- MOBILE RESPONSIVENESS --- */
.nav-toggle { display: none; } /* Hide checkbox */

.nav-toggle-label {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-high);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: 0.3s;
}

.nav-toggle-label span::before { content: ""; top: 8px; }
.nav-toggle-label span::after { content: ""; top: -10px; }

@media (max-width: 768px) {
    .glass-nav {
        border-radius: 30px; /* Slights less rounded on mobile */
        padding: 10px 20px;
    }

    .nav-toggle-label { display: block; } /* Show hamburger */
    
    .desktop-cta { display: none; } /* Hide the floating button */

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: white; /* Change from dark obsidian */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%); /* Start off-screen */
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-high);
    }

    .nav-cta{
        color:white !important;
    }

    .mobile-cta { display: block; color:#f8fafc;} /* Show CTA inside the list */

    /* When checkbox is checked, slide menu down */
    .nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
    }

    /* Animate Hamburger to 'X' */
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: -2px;
    }

    
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.glow-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.08; /* Reduce opacity significantly */
    filter: blur(100px);
    z-index: 0;
}

.top-right { background: var(--violet); top: -100px; right: -100px; }
.bottom-left { background: var(--mint); bottom: -100px; left: -100px; }

.hero-inner {
    max-width: 1200px;
    width: 90%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    z-index: 1;
}

.badge {
    color: var(--mint);
    background: rgba(63, 106, 201, 0.1); /* Light blue tint */
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--mint), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-low);
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 20px; }

.btn-main {
    background: var(--mint);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-ghost {
    /* background: transparent; */
    border: 1px solid var(--mint);
    color: var(--mint); /* Blue text on ghost button */
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
}

/* --- BENTO GRID --- */
.features {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag { color: var(--violet); font-weight: 800; text-transform: uppercase; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 50px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.4s;
}

.bento-card i { font-size: 2rem; margin-bottom: 20px; color: var(--text-low); }

.bento-card.tall { grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }

.mint-glow:hover { border-color: var(--mint); box-shadow: 0 0 30px rgba(0, 255, 170, 0.1); }
.purple-glow:hover { border-color: var(--violet); box-shadow: 0 0 30px rgba(138, 43, 226, 0.1); }

/* --- CONTACT --- */
.contact-area { padding: 100px 5%; }

.contact-card {
    /* background: linear-gradient(145deg, var(--card-bg), #1a1a20); */
    background: var(--violet);
    color: #f8fafc;
    padding: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-form {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form input {
    background: transparent;
    border: none;
    color: var(--text-high);
    padding: 10px 20px;
    outline: none;
}

.contact-form button {
    background: var(--violet);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-low); text-decoration: none; font-size: 0.9rem; }
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    color: var(--text-low);
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-card.wide, .bento-card.tall { grid-column: span 2; grid-row: span 1; }
    .contact-card { flex-direction: column; text-align: center; gap: 30px; }
}


.floating-ticket{
    color: whitesmoke;
}


/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 100px 5%;
    background-color: var(--bg);
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--mint);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: var(--text-high);
}

.section-header p {
    color: var(--text-low);
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.step-card {
    flex: 1;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid var(--border-soft);
    position: relative;
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--mint);
    box-shadow: 0 20px 40px rgba(63, 106, 201, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--violet);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(63, 106, 201, 0.1);
    color: var(--mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-high);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-low);
    line-height: 1.6;
}

/* Desktop Connectors */
.step-connector {
    color: var(--border-soft);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none; /* Hide arrows on mobile */
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }

    /* Optional: Add a vertical line connecting steps on mobile */
    .steps-grid {
        position: relative;
    }

    .step-card:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -40px;
        left: 50%;
        width: 2px;
        height: 40px;
        background: dashed var(--border-soft);
        border-left: 2px dashed var(--border-soft);
    }
}


