/* Base and Reset Styles */
:root {
    /* Color Variables */
    --primary-pink: #DE156F;
    --primary-orange: #F96B00;
    --primary-yellow: #FF9C00;
    --purple-dark: #371258;
    --purple-light: #8C1BEF;
    --blue-light: #54BDD3;
    --blue-dark: #004B8E;
    --blue-accent: #404EE7;
    --background-light: #FFFFFF;
    --background-gray: #EAEAEA;
    --text-dark: #000000;
    --text-light: #FFF9F9;
    --text-secondary: #1E1E1E;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    margin: 0;
    padding: 0;
}

.section-title {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 25px;
    margin-bottom: 3rem;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.btn-primary:not([disabled]):hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    min-width: 200px;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 60px 0 48px 0;
    background-color: rgba(255, 255, 255, 0.95);

    /* Announcement Ribbon Styles */
    .ribbon {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        background: linear-gradient(132.66deg, rgba(218, 101, 112, 0.3) 2.26%, rgba(237, 161, 200, 0.3) 51.95%, rgba(157, 137, 185, 0.3) 101.65%);

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        h3 {
            margin: 10px auto;
            max-width: 420px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 20px;
            text-align: center;
        }

        a {
            color: var(--primary-orange);
        }

        a:hover {
            color: var(--primary-pink);
        }
    }

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

        nav {
            width: 100%;

            ul {
                display: flex;
                align-items: center;
                gap: 60px;

                li {
                    .logo {
                        transform: translateY(10%);

                        img {
                            height: 44px;
                            vertical-align: middle;
                        }
                    }
                }

                li:first-child {
                    margin-right: auto;
                }

                a {
                    font-family: 'Raleway', sans-serif;
                    font-weight: 700;
                    font-size: 1.25rem;
                    cursor: pointer;
                    transition: color 0.3s ease;
                }

                a:not(.btn-small):hover,
                a.active:not(.btn-small) {
                    color: var(--primary-pink);
                }
            }
        }

        .mobile-menu {
            display: none;
        }
    }
}

header:has(.ribbon) {
    padding-top: 94px;
}

/* Hero Section */
.hero {
    margin-top: 154px;
    height: 578px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(132.66deg, rgba(218, 101, 112, 0.3) 2.26%, rgba(237, 161, 200, 0.3) 51.95%, rgba(157, 137, 185, 0.3) 101.65%); */

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: center;
        position: relative;
        z-index: 2;

        .hero-content {
            padding-right: 2rem;

            .main-title {
                font-size: 3.125rem;
                line-height: 1.2;
                margin-bottom: 2rem;
                color: var(--text-dark);
                /* text-shadow: 1px 1px 4px #fff; */
            }            

            .hero-text {
                max-width: 431px;
                font-size: 1.25rem;
                font-weight: bold;
                margin-bottom: 2rem;
                color: var(--text-dark);
                /* text-shadow: 1px 1px 4px #fff; */
            }
        }

        .hero-images {
            position: relative;
            height: 500px;
            z-index: 20;

            .travel-icon {
                position: absolute;
                top: 43%;
                left: 57%;
                transform: translate(-50%, -50%) rotate(-21.94deg);
                width: 326px;
                height: 536px;
                background-image: url('../assets/images/travel-luggage_a-overlaid.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                z-index: 20;
            }

            .hero-image-container {
                position: relative;
                right: -30%;

                .hero-image {
                    display: block;
                    height: 500px;
                    object-fit: cover;
                }
            }
        }
    }
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.clouds-bg {
    display: none;
    position: absolute;
    top: 60%;
    left: 20%;
    transform: translate(-50%, -50%);
    max-width: 906px;
    max-height: 401px;
    width: 50%;
    height: 50%;
    background-image: url('../assets/images/clouds.png');
    background-size: cover;
    z-index: 10;
    mix-blend-mode: soft-light;
}

/* Visual Section */
.visual-section {
    padding: 30px 0;
    background-color: var(--background-light);
    text-align: center;

    .section-title.centered {
        margin-bottom: 2rem;
        font-size: 40px;
        text-align: center;
    }

    .travel-reimagined-video-container {
        margin: 0 auto;
        width: 1080px;
        height: 608px;
        object-fit: cover;

        video, iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* Problem Section */
.problem {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;

    .container {

        .problem-header {
            margin: 0 80px;
            background-image: url('../assets/images/airplane-with-loop-trail_orange.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: 75% 40%;

            .section-title {
                font-size: 70px;
            }

            .section-subtitle {
                font-size: 25px;
                width: 342px;
            }
        }

        .problem-contrast {
            margin-top: 100px;
            margin-left: 37px;

            display: flex;
            gap: 35px;

            .travel-desires {
                position: relative;
                width: 536.55px;
                height: 446.1px;

                background: linear-gradient(90deg, #54BDD3 0%, #ADE1EF 100%);
                border-radius: 27px;

                h3 {
                    margin: 57px 0px 10px 35px;
                    width: 67%;
                    font-size: 30px;
                    font-weight: 800;
                }

                p {
                    margin: 10px 0px 0px 35px;
                    width: 219px;
                    font-size: 1.25rem;
                    font-weight: 500;
                }

                .traveler-excited {
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    width: 520.09px;
                    height: 506.99px;
                    object-fit: cover;
                    object-position: 0% 0%;
                }
            }

            .pain-points {
                position: relative;
                width: 511.5px;
                height: 446.1px;

                background: linear-gradient(90deg, #371258 0%, #8C1BEF 100%);
                border-radius: 27px;

                color: var(--text-light);

                h3 {
                    margin-top: 57px;
                    margin-left: 225px;
                    margin-bottom: 1rem;
                    width: 280px;
                    font-size: 1.875rem;
                    font-weight: 800;
                }

                p {
                    margin-left: 225px;
                    width: 280px;
                    font-size: 1.25rem;
                    font-weight: 500;
                }

                .traveler-overwhelmed {
                    position: absolute;
                    transform: scale(-1, 1);
                    bottom: 0;
                    left: -23.54px;
                    width: 310.03px;
                    height: 371.54px;
                    object-fit: cover;
                    object-position: 0% 0%;
                }
            }   
        }

        .problem-stats {
            margin-top: 37px;
            margin-left: 37px;
            border-radius: 17px;
            width: 1082.69px;
            height: 389.1px;
            padding: 52px 104px;

            display: flex;
            flex-direction: row;

            background: #DE156F;
            color: var(--text-light);

            .big-text {
                font-size: 48px;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }

            .medium-text {
                width: 448.38px;
                height: 89px;
            
                font-weight: 500;
                font-size: 25px;
                line-height: 30px;
            }

            .stats {
                display: flex;
                flex-direction: column;
                gap: 28px;
                justify-content: center;
                align-content: center;

                .stats-text {
                    margin: 0 0 0 90px;
                    width: 400px;
                    font-size: 48px;
                    font-weight: bold;
                }
            }
        }

        .problem-transition {
            margin-top: 30px;
            margin-left: 137px;

            .problem-transition-title {
                margin-bottom: 40px;
                width: 560px;
                font-size: 2.5rem;
            }

            .punishments-container {
                display: flex;
                flex-direction: row;
                gap: 0px;

                .punishments-image-container {
                    box-sizing: border-box;

                    border: 5px solid #8C1BEF;
                    border-radius: 39px;

                    min-width: 506px;
                    min-height: 440.24px;

                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;

                    .punishments-image {
                        border-radius: 33px;
                        min-width: 467.74px;
                        min-height: 401.47px;

                        background: url('../assets/images/traveler-exhausted.png');
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                }

                .limitations-list {
                    margin-left: -60px;

                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    gap: 20px;

                    .limitations-card {
                        border-radius: 17px;
                        width: 395px;
                        height: 82px;
                        padding: 0 20px;
                        background-color: #8C1BEF;
                        color: var(--text-light);

                        display: flex;
                        flex-direction: row;
                        justify-content: left;
                        align-items: center;
                        gap: 20px;

                        h3 {
                            font-size: 25px;
                            font-weight: 700;
                            margin: 0;
                        }

                        p {
                            font-size: 16px;
                            font-weight: 300;
                            margin: 0;
                        }
                    }
                }
            }

            .problem-transition-footer {
                margin-left: 55%;
                margin-bottom: 40px;
                width: 450px;
                font-size: 2.5rem;
            }
        }
    }
}

/* Solution Section */
.solution {
    margin-top: 160px;
    padding: 70px 0;
    position: relative;

    height: 507px;
    background: linear-gradient(90deg, rgba(1, 140, 204, 0.15) 0%, rgba(0, 75, 142, 0.15) 100%);

    .container {
        height: 100%;
        position: relative;

        .solution-text {
            margin-left: 50px;
            width: 450px;

            .section-title {
                margin-bottom: 20px;
                font-size: 40px;
            }
            
            .section-subtitle {
                margin: 10px 0;
            }
        
            .tagline {
                margin: 10px 0;
                font-weight: 700;
                font-size: 1.25rem;
                color: var(--blue-accent);
            }

            .description {
                margin-bottom: 30px;
                width: 363px;
                font-size: 17px;
            }
        }

        .solution-image {
            position: absolute;
            top: -250px;
            right: -100px;
            width: 703px;
            height: 557px;

            background-image: url('../assets/images/travel-isometric.png');
            background-size: cover;
            background-position: center;
        }
    }
}

/* Features Section */
.features {
    background-color: var(--background-light);
    padding: 60px 0;

    .container {
        display: flex;
        flex-direction: row;
        gap: 2rem;

        .features-container {
            .features-list {
                margin-top: 3rem;
                margin-bottom: 2rem;
                width: 406px;
                display: flex;
                flex-direction: column;
                gap: 0;

                .feature-card {
                    height: 60px;
                    padding: 0.5rem 0;
                    border-radius: 12px;
                    transition: all 0.3s ease;
                    color: var(--purple-dark);
                    background-image: url('../assets/images/arrow-right_black.svg');
                    background-size: 20px 20px;
                    background-repeat: no-repeat;
                    background-position: 100% 10px;
                    cursor: pointer;

                    .feature-title {
                        font-size: 1.25rem;
                        margin-bottom: 0.1rem;
                        line-height: 1.1;
                    }

                    .feature-subtitle {
                        font-size: 1rem;
                        margin-bottom: 0.2rem;
                        line-height: 1.4;
                        color: var(--purple-dark);
                    }

                    .feature-desc {
                        display: none;
                        font-size: 14px;
                        line-height: 1.2;
                    }

                    .divider {
                        width: 100%;
                        height: 1px;
                        background-color: rgba(0, 0, 0, 0.2);
                        margin: 0.25rem 0;
                    }                
                }

                .feature-card.active {
                    height: 120px;
                    background-image: url('../assets/images/arrow-down_orange.svg');

                    .feature-title {
                        color: var(--purple-light);
                    }

                    .feature-desc {
                        display: block;
                    }
                }
            }
        }

        .feature-illustration-container {
            width: 517px;
            height: 506px;

            .feature-illustration {
                position: relative;
                top: -50px;
            }

            .testimonial-card {
                position: relative;
                top: -100px;
            }
        }
    }
}

.travel-isometric {
    max-width: 60%;
    border-radius: 20px;
}

/* Process Section */
.process {
    padding: 30px 0;;
    background-color: var(--background-light);

    .container {
        .section-subtitle {
            max-width: 550px
        }

        .travel-process-image {
            margin-top: 60px;
            display: block;
        }

        .travel-process-image-narrow {
            margin-top: 60px;
            display: none;
        }
    }
}

.process-steps {
    display: none; /* grid; */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;

    .process-step {
        position: relative;
        padding: 2rem;
        background-color: var(--background-light);
        border-radius: 12px;

        .step-number {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--purple-light);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
        }

        .step-title {
            color: var(--purple-light);
            font-size: 1.5625rem;
            margin-bottom: 1rem;
        }

        .step-desc {
            font-size: 0.75rem;
        }
    }
}

/* Testimonial Card */
.testimonial-card {
    max-width: 510px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #8A8989;
    border-radius: 19px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;

    .testimonial-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        background: url('../assets/images/a-logo_white.png'), var(--purple-light);
        background-size: cover;
        background-position: center;
    }

    .testimonial-text {
        margin-left: 100px;
        margin-bottom: 0.4rem;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 1.125rem;
    }
    
    .testimonial-name {
        margin-left: 100px;
        margin-bottom: 0.25rem;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 0.9375rem;
    }
    
    .testimonial-location {
        margin-left: 100px;
        margin-bottom: 0;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 0.625rem;
    }
}

/* CTA Section */
.cta {
    height: 458px;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;

    .gradient-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(132.66deg, rgba(218, 101, 112, 0.3) 2.26%, rgba(237, 161, 200, 0.3) 51.95%, rgba(157, 137, 185, 0.3) 101.65%);
        opacity: 1.0;
        z-index: 10;
    }

    .clouds-bg-2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../assets/images/clouds.png');
        background-size: contain;
        background-position: 5%;
        background-repeat: no-repeat;
        z-index: 20;
        mix-blend-mode: soft-light;
    }

    .cta-image {
        position: absolute;
        width: 339.33px;
        height: 200.43px;
        transform: rotate(-39.15deg);
        background-image: url('../assets/images/flight-tickets.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom right;
        z-index: 30;
    }

    .cta-content {
        position: relative;
        z-index: 40;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;

        text-align: left;
        color: var(--text-dark);
    }

    .cta-title {
        margin-left: 500px;
        margin-bottom: 1.5rem;
        min-width: 650px;
        font-size: 50px;
        color: var(--text-dark);
    }

    .cta-form {
        margin-left: 500px;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;

        .cta-form-inputs {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;

            .form-row {
                display: flex;
                flex-direction: row;
                gap: 10px;
            }

            .form-group {
                flex-grow: 1;
                text-align: left;

                label {
                    display: block;
                    margin-left: 16px;
                    margin-bottom: 0.5rem;
                    font-family: 'Raleway', sans-serif;
                    font-weight: 700;
                    font-size: 1rem;
                }

                input {
                    width: 100%;
                    padding: 1rem;
                    border: 1px solid var(--text-dark);
                    border-radius: 25.5px;
                    background: transparent;
                    font-family: 'Inter', sans-serif;
                    font-size: 1rem;
                }
            }
        }

        button {
            width: 199px;
            height: 48px;
            padding: 8px;
        }
    }
}

/* Footer */
footer {
    padding: 4rem 0;
    color: var(--text-dark);

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-bottom {
        flex-grow: 1;
        border-top: 3px solid;
        border-image: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-pink) 100%) 1;
        padding-top: 1rem;
        margin-top: 1rem;

        display: flex;
        flex-direction: row;
        justify-content: right;
    }

    .footer-links {
        flex-grow: 1;

        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20%;
    }

    .footer-links a {
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--text-secondary);
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--primary-pink);
    }

    .social-icons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }

    .social-icon img {
        width: 44px;
        height: 44px;
        transition: transform 0.3s ease;
    }

    .social-icon:hover img {
        transform: scale(1.1);
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;

    .modal-content {
        background-color: white;
        width: 80%;
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 10px;
        padding: 30px;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            z-index: 1000;
        }
        
        .close-modal:hover {
            color: var(--purple-light);
        }
        
        .modal-body {
            margin-top: 20px;
        }
        
        .modal-body h3 {
            margin-top: 20px;
            margin-bottom: 5px;
            color: var(--purple-light);
        }
        
        .modal-body p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
    }
}

/* Waitlist Modal Styles */
#waitlist-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: 90%;
    height: 90%;
    padding: 30px 60px;
    background: #ffffff;
    overflow: hidden;
    position: relative;

    .modal-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(135deg, #DA6570 0%, #EDA1C8 50%, #9D89B9 100%);
        overflow: hidden;
        opacity: 0.2;

        .modal-clouds {
            position: relative;
            top: 50%;
            left: 75%;
            transform: translate(-50%, -50%);
            width: 906px;
            height: 401px;
            opacity: 0.5;
            z-index: 2;
        }    
    }

    .modal-body {
        margin-top: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        position: relative;
        overflow-y: scroll;
        z-index: 10;

        .modal-left {
            flex: 1;
            flex-basis: 600px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            justify-content: center;
            align-content: center;

            .modal-logo {
                min-width: 189px;
                min-height: 44px;
                width: 25%;
                margin-bottom: 10px;
            }
        }

        .modal-right {
            flex: 1;
            flex-basis: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
    
            .modal-luggage {
                transform: rotate(9.31deg);
                max-width: 300px;
                max-height: 500px;
                width: 100%;
                height: auto;
                object-fit: cover;
                z-index: 2;
            }
        }

        h2 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            font-size: 48px;
            line-height: 1.174;
            color: #000000;
            margin: 0px;
        }

        h3 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.21;
            color: #000000;
            margin: 0px;
        }

        h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 20px;
            line-height: 1.21;
            color: #000000;
            margin: 18px 0 10px;
        }

        p {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            line-height: 1.21;
            color: #000000;
            margin-bottom: 10px;
        }

        p.info-text {
            font-size: 12pt; color: #333;
        }
    }
}

.waitlist-form-substitute {
    padding-top: 2rem;
}

.waitlist-form {
    display: none;  /* none, flex */
    flex-direction: column;
    gap: 15px;

    .form-row {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;

        .form-group {
            flex-grow: 1;
        }
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

.waitlist-form label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.21;
    color: #000000;
    margin-left: 16px;
}

.waitlist-form input {
    width: 100%;
    padding: 12px 16px;
    height: 46.5px;
    border: 1px solid #000000;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    background: transparent;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.waitlist-form button {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #DE156F 0%, #F96B00 100%);
    border-radius: 100px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.174;
    color: #FFF9F9;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.waitlist-form button:not([disabled]):hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(222, 21, 111, 0.2);
}

.waitlist-form button[disabled] {
    opacity: 0.5;
}

@media (max-width: 1440px) {
    #waitlist-modal .modal-content {
        max-width: 90vw;

        .modal-background {
            .modal-clouds {
                top: 15%;
                left: 37%;
                width: 63%;
                height: auto;
            }
        }

        .modal-body {
            min-height: auto;
            height: 100%;

            .modal-left {
                .modal-logo {
                    top: 15%;
                    left: 10%;
                    width: 13%;
                    height: auto;
                }
            }

            .modal-right {
                padding: 10px;
            }
        }
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }
    
    header {
        .container {
            nav {
                ul {
                    gap: 30px;

                    li {
                        .logo {
                            img {
                                height: 36px;
                            }
                        }

                        a {
                            font-family: 'Raleway', sans-serif;
                            font-weight: 700;
                            font-size: 1.1rem;
                            cursor: pointer;
                            transition: color 0.3s ease;
                        }
                        .btn-small {
                            min-width: 180px;
                        }
                    }
                }
            }
        }
    }
    
    .video-placeholder {
        height: 480px;
    }
    
    .hero .container,
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .travel-illustration {
        max-width: 80%;
    }
    
    .footer-image {
        width: 30%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
    
    header {
        padding: 30px 0 24px 0;

        .container {
            flex-direction: row;
            justify-content: center;

            nav {
                ul {
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    align-content: center;
                    gap: 20px;

                    li {
                        .logo {
                            img {
                                height: 32px;
                                vertical-align: middle;
                            }
                        }
                    }

                    li:not(:first-child) {
                        display: none;
                    }

                    li:last-child {
                        margin-left: 0;
                    }
                }
            }

            .mobile-menu {
                display: block;
                margin-left: auto;
                margin-right: 10px;

                .menu-toggle {
                    display: none;
                }
    
                .hamburger {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
                    width: 32px;
                    height: 32px;
                    padding: 6px;
                    cursor: pointer;
                    border: 1px solid #999;
                    border-radius: 6px;
                    transition: all 0.3s ease-in-out;

                    .bar {
                        width: 100%;
                        height: 2px;
                        background-color: #999;
                        transition: all 0.3s ease-in-out;
                    }
                }

                .menu-toggle:checked ~ .menu-items {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                }
    
                .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
                    transform: translateY(-2px) rotate(15deg);
                }
    
                .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
                    transform: translateY(2px) rotate(-15deg);
                }
    
                .hamburger:hover {
                    border-color: var(--primary-pink);
                }
    
                .hamburger:hover .bar {
                    background-color: var(--primary-pink);
                }
    
    
                .menu-items {
                    position: absolute;
                    top: 100%;
                    right: 0;
                    background-color: white;
                    padding: 20px;
                    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                    min-width: 200px;
                    max-width: 300px;
                    width: 67vw;
                    opacity: 0;
                    visibility: hidden;
                    transform: translateY(-10px);
                    transition: all 0.3s ease-in-out;
    
                    a {
                        display: block;
                        padding: 10px 0;
                        font-family: 'Raleway', sans-serif;
                        font-weight: 700;
                        font-size: 1.25rem;
                        text-decoration: none;
                        cursor: pointer;
                        transition: color 0.3s ease;
                    }

                    a:not(.btn-small):hover,
                    a.active:not(.btn-small) {
                        color: var(--primary-pink);
                    }
                }
            }
        }
    }
    
    .visual-section {
        .travel-reimagined-video-container {
            min-width: 360px;
            min-height: 202px;
            width: 100%;
            height: auto;
        }
    }

    .hero .container,
    .features-grid,
    .problems-grid,
    .process-steps,
    .stats {
        grid-template-columns: 1fr;
    }

    .hero {
        margin-top: 86px;
        height: auto;
        padding-top: 80px;

        .container {
            .hero-content {
                padding-right: 0;
                padding: 0 1rem;
                
                .clouds-bg {
                    display: none;
                }
            }

            .hero-images {
                height: 300px;

                .travel-icon {
                    width: 200px;
                    height: 121px;
                }

                .hero-image-container {
                    left: 0;
                    top: 0;
                    bottom: 0;
                    right: 0;

                    .hero-image {
                        margin: 0 auto;
                        height: 300px;
                        transform: rotate(43deg);
                    }
                }
            }
        }
    }

    .problem {
        .container {
            .problem-header {
                margin: 0;
                background: none;

                .section-title {
                    font-size: 48px;
                    width: 100%;
                }

                .section-subtitle {
                    font-size: 24px;
                    width: 80%;
                }
            }

            .problem-contrast {
                margin-left: 0;

                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 48px;

                .travel-desires {
                    width: 80%;
                    min-width: 350px;
                    height: 325px;

                    h3 {
                        margin: 30px 0px 5px 20px;
                        width: 70%;
                        font-size: 20px;
                        font-weight: 800;
                    }

                    p {
                        margin: 5px 0px 0px 20px;
                        width: 200px;
                        font-size: 16px;
                        font-weight: 500;
                    }

                    .traveler-excited {
                        width: 80%;
                        min-width: 350px;
                        height: 364px;
                    }
                }

                .pain-points {
                    width: 80%;
                    min-width: 350px;
                    height: 325px;

                    h3 {
                        margin-top: 30px;
                        margin-left: 150px;
                        margin-bottom: 1rem;
                        width: 180px;
                        font-size: 20px;
                        font-weight: 800;
                    }
    
                    p {
                        margin-left: 150px;
                        width: 180px;
                        font-size: 16px;
                        font-weight: 500;
                    }

                    .traveler-overwhelmed {
                        left: -12px;
                        width: 227px;
                        height: 271px;
                    }
                }
            }

            .problem-stats {
                margin: 48px auto;
                min-width: 350px;
                min-height: 480px;
                width: 80%;
                height: 480px;
                padding: 36px;

                flex-direction: column;
                justify-content: center;
                align-items: start;
                align-content: start;

                .big-text {
                    width: 100%;
                    font-size: 36px;
                }

                .medium-text {
                    width: 100%;
                    font-size: 18px;
                }

                .stats {
                    gap: 12px;

                    .stats-text {
                        margin: 0;
                        width: 100%;
                        font-size: 32px;
                    }
                }
            }

            .problem-transition {
                margin-top: 30px;
                margin-left: 0;

                .problem-transition-title {
                    margin-bottom: 20px;
                    width: 100%;
                    font-size: 24px;
                }

                .punishments-container {
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 20px;

                    .punishments-image-container {
                        border-radius: 26px;
                        min-width: 337px;
                        min-height: 297px;
                        width: 100%;
                        height: 87%;

                        .punishments-image {
                            border-radius: 22px;
                            min-width: 320px;
                            min-height: 274px;
                            width: 95%;
                            height: 69%;
                        }
                    }

                    .limitations-list {
                        margin-left: 0;

                        .limitations-card {
                            width: 100%;

                            h3 {
                                font-size: 20px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }
                    }
                }

                .problem-transition-footer {
                    margin-left: 0;
                    margin-top: 20px;
                    width: 100%;
                    font-size: 24px;
                }
            }
        }
    }

    .solution {
        margin-top: 0;
        padding: 40px 0;

        height: auto;

        .container {
            .solution-text {
                margin-left: 0;
                width: 100%;
            }

            .solution-image {
                display: none;
            }
        }
    }

    .features {
        padding: 30px 0;

        .container {
            flex-direction: column;
            gap: 1rem;

            .features-container {
                .section-title {
                    font-size: 36px;
                }

                .section-subtitle {
                    font-size: 24px;
                }

                .features-list {
                    margin-bottom: 0;
                    width: 100%;
                }
            }

            .feature-illustration-container {
                width: 100%;
                height: 100%;

                .feature-illustration {
                    top: 0;
                }

                .testimonial-card {
                    top: 0;
                }
            }
        }
    }

    .process {
        .container {
            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 24px;
            }

            .travel-process-image {
                display: none;
            }
    
            .travel-process-image-narrow {
                display: block;
            }
        }
    }

    .cta {
        .container {
            .cta-image {
                display: none;
            }
            .cta-content {
                .cta-title {
                    margin-left: 0;
                    min-width: 320px;
                    font-size: 32px;
                }

                .cta-form {
                    margin-left: 0;
                    max-width: 320px;
                }
            }
        }
    }
    
    .footer-image {
        display: none;
    }

    #waitlist-modal .modal-content {
        padding: 30px;

        .modal-background {
            .modal-clouds {
                display: none;
            }
        }

        .modal-body {
            flex-direction: column;
            gap: 10px;
            justify-content: center;
            overflow-y: scroll;

            .modal-left {
                .modal-logo {
                    min-width: 95px;
                    min-height: 22px;
                    width: 33%;
                    height: auto;
                    margin-bottom: 10px;
                }            
            }
        
            .modal-right {
                display: none;
                padding: 32px 24px;

                .modal-luggage {
                    width: 150px;
                    height: 250px;
                    object-fit: cover;
                }
            }

            h2 {
                font-size: 32px;
                margin-bottom: 16px;
            }

            h3 {
                font-size: 16px;
            }

            h4 {
                font-size: 16px;
                margin: 0px 0 8px;
            }
        
            p {
                font-size: 18px;
            }
        }
    }

    .waitlist-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
}
