/* Base and Reset Styles */
:root {
    /* Color Variables */
    --primary-pink: #DE156F;
    --primary-orange: #F96B00;
    --primary-yellow: #FF9C00;
    --purple-dark: #371258;
    --purple-light: #8C1BEF;
    --purple-bright: #A242CD;
    --blue-light: #54BDD3;
    --blue-bright: #2BB2DB;
    --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: 'Poppins', 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-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-size: 20px;
    margin-bottom: 1rem;
}

a {
    font-size: 20px;
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    font-size: 20px;
}

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

section {
    margin: 0;
    padding: 0;
}

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

h1, .page-title {
    font-size: 50px;
}

h2, .section-title {
    font-size: 32px;
}

h3, .section-subtitle {
    font-size: 25px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    padding: 0.6rem 2rem;
    /* background: linear-gradient(90deg, var(--primary-pink) 0%, var(--primary-orange) 100%); */
    background: linear-gradient(89.57deg, #F96B00 0.08%, #DC3B33 49.63%, #8C1BEF 74.4%, #2BB2DB 99.18%);
    border-radius: 0px 30px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 17px;
    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%); */
    background: linear-gradient(89.57deg, #F96B00 0.08%, #DC3B33 49.63%, #8C1BEF 74.4%, #2BB2DB 99.18%);
    border-radius: 0px 30px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 17px;
    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);
}

.centered {
    text-align: center;
}

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

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

        nav {
            width: 100%;

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

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

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

                a {
                    font-weight: 600;
                    font-size: 17px;
                    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;
        }
    }
}

/* Hero Section */
.hero {
    margin-bottom: 64px;
    height: 565px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: visible;
    /* 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%); */
    background-image: url('../assets/images/section-banner-01.png');
    background-size: cover;
    background-repeat: no-repeat;

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

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;

            .hero-subtitle {
                font-size: 15px;
                font-weight: 600;
                color: var(--purple-light);
            }

            .hero-title {
                font-size: 50px;
                font-weight: 600;
                margin-bottom: 1rem;
                color: var(--text-dark);
                /* text-shadow: 1px 1px 4px #fff; */
            }            

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

                p {
                    margin-bottom: 1rem;
                }
            }
        }

        .hero-image-container {
            .hero-image {
                position: absolute;
                display: block;
                height: 40vw;
                min-height: 537px;
                max-height: 630px;
                object-fit: cover;
                z-index: 10;
                overflow: visible;
            }
        }

        .hero-social-container {
            padding-top: 20px;
            padding-bottom: 40px;
            align-items: end;
            justify-content: end;
            text-align: right;
        }
    }
}

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

    .travel-reimagined-video-container {
        margin: 0 auto;
        width: 100%;

        video, iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
        }
    }
}

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

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;

        .problem-header {
            margin: 0 60px;
            display: flex;
            flex-direction: row;
            gap: 20px;
            align-items: stretch;

            .problem-header-text {
                flex: 1;
                overflow: visible;

                .section-title {
                    width: 500px;
                    font-size: 60px;
                }

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

            .problem-header-visual {
                flex: 1;
                position: relative;

                min-width: 360px;

                img {
                    display: inline-block;
                    position: relative;
                    left: -120px;
                    top: 30px;
                    width: 360px;
                    height: auto;
                    overflow: visible;
                }
            }
        }

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

            display: grid;
            grid-template-columns: 420px 420px;
            row-gap: 0;
            column-gap: 100px;

            .travel-desires-text {
                z-index: 20;

                h3 {
                    margin-top: 25px;
                    font-size: 36px;
                    font-weight: 700;
                    color: var(--blue-bright);
                }

                p {
                    width: 350px;
                    font-size: 28px;
                    font-weight: 500;
                }

                img {
                    display: block;
                    margin: 40px auto;
                }
            }

            .travel-desires {
                position: relative;
                width: 420px;
                height: 420px;
                z-index: 20;

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

                .traveler-excited {
                    position: absolute;
                    bottom: 0;
                    left: -124px;
                    width: 520px;
                    height: 520px;
                    object-fit: cover;
                    object-position: 0% 0%;
                    overflow: visible;
                }
            }

            .pain-points {
                position: relative;
                width: 420px;
                height: 420px;
                z-index: 20;

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

                .traveler-overwhelmed {
                    position: absolute;
                    bottom: 0;
                    left: 97px;
                    width: 367px;
                    height: 440px;
                    object-fit: cover;
                    object-position: 0% 0%;
                }
            }

            .pain-points-text {
                z-index: 20;

                h3 {
                    margin-top: 95px;
                    font-size: 36px;
                    font-weight: 700;
                    color: var(--purple-light);
                }

                p {
                    width: 400px;
                    font-size: 28px;
                    font-weight: 400;
                }

                img {
                    display: block;
                    margin: 20px auto;
                }
            }
        }

        .problem-stats {
            margin-top: 150px;
            margin-bottom: 150px;
            border-radius: 17px;
            width: 1082.69px;
            height: 389.1px;
            padding: 52px auto;

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

            color: var(--purple-dark);

            .stats-description {
                margin-left: 40px;

                .big-text {
                    font-size: 36px;
                    font-weight: bold;
                    margin-bottom: 1.5rem;
                }

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

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

                .stats-text {
                    margin: 0;
                    width: 420px;
                    font-size: 32px;
                    font-weight: bold;

                    .stats-icon {
                        margin-right: 32px;
                        display: inline-block;
                        width: 62px;
                        height: 51px;
                        object-fit: contain;
                        vertical-align: middle;
                    }
                }
            }
        }

        .problem-transition {
            margin-top: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;

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

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

                .limitations-list {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    gap: 40px;

                    .limitations-card {
                        border-radius: 17px;
                        width: 538px;
                        height: 112px;
                        padding-left: 70px;
                        background-color: #8C1BEF;
                        color: var(--text-light);

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

                        img {
                            height: 64px;
                        }

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

                        p {
                            font-size: 15px;
                            font-weight: 400;
                            margin: 0;
                        }
                    }
                }
            }

            .problem-transition-footer {
                margin-top: 40px;
                margin-bottom: 40px;
                width: 560px;
                font-size: 35px;
            }
        }
    }
}

.problem-highlight {
    margin-top: -200px;
    z-index: 10;
    background-image: url('../assets/images/section-banner-02.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Solution Section */
.solution::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(1, 140, 204, 0.15) 0%, rgba(0, 75, 142, 0.15) 100%); */
    background-image: url('../assets/images/background/city-map.png'), url('../assets/images/section-banner-03.png');
    background-blend-mode: screen;
    background-size: contain, cover;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

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

    height: 660px;

    .container {
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: end;

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

            .section-title {
                margin-bottom: 10px;
                font-size: 25px;
                font-weight: 600;
            }
            
            .section-subtitle {
                margin: 10px 0;
                font-size: 40px;
            }
        
            .tagline {
                margin: 20px 0;
                font-weight: 600;
                font-size: 20px;
                color: var(--purple-light);
            }

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

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

    .container {
        .features-container {
            display: flex;
            flex-direction: column;
            gap: 0;

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

            .features-split-container {
                margin-top: -40px;
                display: flex;
                flex-direction: row;
                gap: 2rem;
                align-items: center;

                .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;

                            a {
                                font-size: 14px;
                            }
                        }

                        .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: 640px;
                    height: 640px;

                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    align-items: center;

                    .feature-illustration {
                        position: relative;
                    }

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

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

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

    .container {
        .section-subtitle {
            max-width: 640px;
            margin-bottom: 32px;
        }

        .travel-process-image-container {
            text-align: center;
        }

        .travel-process-image {
            margin: 30px auto;
            display: block;
        }

        .travel-process-image-narrow {
            margin: 30px auto;
            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-weight: 700;
        }

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

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

/* Customer Demo Video Section */
.customer-demo-visual {
    margin-bottom: 30px;
    max-height: 1280px;
    padding: 0;

    .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .demo-text {
        flex: 1;
        text-align: center;

        h2 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        p {
            font-size: 20px;
            margin-bottom: 0;
        }
    }

    .demo-video-container {
        flex: 1;
        margin: 0 auto;

        video, iframe {
            min-height: 300px;
            height: 70vh;
            max-height: 960px;
            width: auto;
            aspect-ratio: 9 / 16;

            box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.15);
        }
    }
}

/* 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: 6px;
        width: 80px;
        height: 80px;
        background: url('../assets/images/a-logo_white.png'), var(--purple-bright);
        background-size: 55px auto;
        background-position: center;
        background-repeat: no-repeat;
    }

    .testimonial-text {
        margin-left: 100px;
        margin-bottom: 2px;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.2;
    }
    
    .testimonial-byline {
        float: right;
        margin-right: 20px;

        .testimonial-name {
            margin: 0;
            font-weight: 500;
            font-size: 16px;
        }
        
        .testimonial-location {
            margin: 0;
            font-weight: 500;
            font-size: 14px;
        }
    }
}

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

    background-image: url('../assets/images/section-banner-04.png');
    background-size: cover;
    background-repeat: no-repeat;

    .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .cta-content {
        flex: 0.6;
        display: flex;
        flex-direction: row;
        justify-content: center;

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

        .cta-title {
            margin: 1.5rem 0;
            min-width: 320px;
            max-width: 370px;
            font-size: 40px;
            color: var(--text-dark);
        }

        .cta-image {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-250px, -25px);
            width: 300px;
            height: 148px;

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

    .cta-form-container {
        flex: 0.4;

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

            .btn-primary {
                min-width: 240px;
                max-width: 250px;
                text-align: center;
            }
        }
    }
}

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

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
        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: 0.5rem;
        /* margin-top: 1rem; */

        display: flex;
        flex-direction: row;
        justify-content: stretch;
        gap: 20px;
    }

    .footer-links {
        flex-grow: 1;

        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        gap: 20px;
        text-align: center;
    }

    .footer-links a {
        font-weight: 500;
        color: var(--text-secondary);
        transition: color 0.3s ease;
    }

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

.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--purple-dark);
    text-align: center;

    .social-icons {
        display: flex;
        gap: 14px;
        justify-content: center;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
        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;
        }
    }
}

/* 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-weight: 700;
            font-size: 48px;
            color: #000000;
            margin: 0px;
        }

        h3 {
            font-weight: 700;
            font-size: 20px;
            color: #000000;
            margin: 0px;
        }

        h4 {
            font-weight: 700;
            font-size: 20px;
            color: #000000;
            margin: 18px 0 10px;
        }

        p {
            font-size: 24px;
            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-weight: 700;
    font-size: 15px;
    color: #000000;
    margin-left: 16px;
}

.waitlist-form input {
    width: 100%;
    padding: 12px 16px;
    height: 46.5px;
    border: 1px solid #000000;
    border-radius: 30px;
    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-weight: 700;
    font-size: 20px;
    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;
}

/* Responsive styles */
@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 (max-width: 1024px) {
    html {
        font-size: 14px;
    }
    
    header {
        .container {
            nav {
                ul {
                    gap: 30px;

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

                        a {
                            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;
    }

    .hero {
        .container {
            .hero-content {
                .hero-title {
                    font-size: 36px;
                }
            }

            .hero-image-container {
                .hero-image {
                    height: 95%;
                }
            }
        }
    }

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

                .problem-header-text {
                    width: 100%;
                    text-align: center;

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

                        .break {
                            display: none;
                        }
                    }

                    .section-subtitle {
                        width: 100%;
                        font-size: 20px;
                    }
                }

                .problem-header-visual {
                    display: none;
                }
            }

            .problem-contrast {
                grid-template-columns: 280px 280px;
                column-gap: 64px;

                .travel-desires-text {
                    h3 {
                        font-size: 24px;
                        font-weight: 700;
                    }

                    p {
                        width: 200px;
                        font-size: 18px;
                        font-weight: 500;
                    }

                    img {
                        width: 160px;
                        height: auto;
                    }
                }

                .travel-desires {
                    width: 280px;
                    height: 280px;
                    border-radius: 18px;

                    .traveler-excited {
                        position: absolute;
                        bottom: 0;
                        left: -82px;
                        width: 346px;
                        height: 346px;
                        object-fit: cover;
                        object-position: 0% 0%;
                        overflow: visible;
                    }
                }

                .pain-points {
                    width: 280px;
                    height: 280px;
                    border-radius: 18px;

                    .traveler-overwhelmed {
                        position: absolute;
                        bottom: 0;
                        left: 68px;
                        width: 245px;
                        height: 293px;
                        object-fit: cover;
                        object-position: 0% 0%;
                    }
                }

                .pain-points-text {
                    margin-top: 12px;
                    margin-left: 33%;
                    margin-bottom: 36px;

                    h3 {
                        margin-top: 10px;
                        font-size: 24px;
                        font-weight: 700;
                    }
    
                    p {
                        width: 240px;
                        font-size: 18px;
                        font-weight: 500;
                    }

                    img {
                        height: 160px;
                        width: auto;
                    }
                }
            }
        }
    }

    .problem-highlight {
        margin-top: -120px;

        .container {
            .problem-stats {
                margin-left: 0;
                padding-left: 0;

                .stats-description {
                    margin-left: 0;
                    width: 360px;
                }

                .stats {
                    width: 360px;
                }
            }
        }
    }

    .solution {
        .container {
            .solution-text {
                margin-bottom: 25px;
                .section-subtitle {
                    font-size: 32px;
                }
            }
        }
    }

    .customer-demo-visual {
        margin: 45px 0;

        .container {
            .demo-video-container {
                video, iframe {
                    height: 80vh;
                }
            }
        }
    }
    
    .travel-illustration {
        max-width: 80%;
    }

    .cta {
        .container {
            flex-direction: column;
            align-items: center;

            .cta-content {
                .cta-title {
                    max-width: 520px;
                    text-align: center;
                }

                .cta-image {
                    display: none;
                }
            }
        }
    }
    
    .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-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: 300px;
            min-height: 200px;
            max-width: 90vw;
            height: auto;
        }
    }

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

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

        .container {
            .hero-content {
                padding-right: 0;
                padding: 0 1rem;
            }

            .hero-image-container {
                display: none;
            }
        }
    }

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

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

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

            .problem-contrast {
                margin-left: 0;
                margin-top: 40px;

                grid-template-columns: 1fr;
                justify-content: center;
                align-items: center;
                row-gap: 48px;

                .travel-desires-text {
                    h3 {
                        font-size: 24px;
                        font-weight: 700;
                    }

                    p {
                        width: 200px;
                        font-size: 18px;
                        font-weight: 500;
                    }

                    img {
                        display: none;
                    }
                }

                .travel-desires {
                    margin-left: auto;
                    width: 280px;
                    height: 280px;
                    border-radius: 18px;

                    .traveler-excited {
                        position: absolute;
                        bottom: 0;
                        left: -41px;
                        width: 346px;
                        height: 346px;
                        object-fit: cover;
                        object-position: 0% 0%;
                        overflow: visible;
                    }
                }

                .pain-points {
                    margin-right: auto;
                    width: 280px;
                    height: 280px;
                    border-radius: 18px;

                    .traveler-overwhelmed {
                        position: absolute;
                        bottom: 0;
                        left: 24px;
                        width: 245px;
                        height: 293px;
                        object-fit: cover;
                        object-position: 0% 0%;
                    }
                }

                .pain-points-text {
                    margin-top: -12px;
                    margin-left: 0;
                    margin-bottom: 12px;

                    h3 {
                        font-size: 24px;
                        font-weight: 700;
                    }
    
                    p {
                        width: 240px;
                        font-size: 18px;
                        font-weight: 500;
                    }

                    img {
                        display: none;
                    }
                }
            }

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

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

                .punishments-container {
                    width: 100%;
                    flex-direction: column;
                    justify-content: center;
                    gap: 0;

                    .limitations-list {
                        margin-left: 0;
                        width: 80%;

                        .limitations-card {
                            min-width: 300px;
                            width: 80vw;
                            gap: 10px;
                            padding-left: 10px;

                            h3 {
                                font-size: 20px;
                            }

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

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

    .problem-highlight {
        margin-top: 0;

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

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

                .stats-description {
                    width: 90%;
                    margin: 0 auto 20px auto;

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

                .stats {
                    width: 100%;
                    gap: 12px;

                    .stats-text {
                        margin: 0 auto;
                        width: 80%;
                        font-size: 28px;

                        .stats-icon {
                            margin-right: 20px;
                            width: 36px;
                            height: 36px;
                        }
                    }
                }
            }
        }
    }

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

        height: auto;

        .container {
            align-items: center;

            .solution-text {
                margin-bottom: 0;
                width: 90vw;

                .description {
                    font-size: 18px;
                    width: unset;
                }
            }

            .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-split-container {
                    flex-direction: column;
                    gap: 40px;

                    .features-list {
                        margin-bottom: 0;
                        width: 90vw;
                    }

                    .feature-illustration-container {
                        width: 90vw;
                        height: auto;

                        .feature-illustration {
                            top: -40px;
                            width: 90vw;
                            height: auto;
                        }

                        .testimonial-card {
                            margin: 0 auto;
                            width: 90vw;
                            max-width: 400px;
                            padding: 16px;;

                            .testimonial-text {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }

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

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

            .travel-process-image {
                display: none;
            }
    
            .travel-process-image-narrow {
                display: block;
                width: 80%;
                max-width: 480px;
            }
        }
    }

    .customer-demo-visual {
        margin: 30px 0;

        .container {
            .demo-video-container {
                video, iframe {
                    height: 80vh;
                    max-width: 90vw;
                }
            }
        }
    }

    .cta {
        .container {
            .cta-content {
                .cta-title {
                    font-size: 32px;
                }
            }
        }
    }

    footer {
        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0;

            .logo {
                img {
                    height: 32px;
                }
            }

            .footer-bottom {
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                padding-top: 0;

                .footer-links {
                    gap: 20px;

                    a {
                        font-size: 16px;
                    }
                }

                .social-container {
                    align-items: center;

                    p {
                        font-size: 16px;
                    }

                    .social-icon {
                        img {
                            width: 40px;
                            height: 40px;
                        }
                    }
                }
            }
        }
    }
    
    .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;
    }
}
