/* =========================================
   MOBILE HEADER — COMPACT
========================================= */

@media (max-width: 700px) {

    .header {
        padding: 11px 16px;
    }

    .header-inner {
        min-height: 38px;

        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* LOGO */

    .logo {
        font-size: 19px;
    }

    .logo-dot {
        width: 6px;
        height: 6px;
    }


    /* NAV */

    .nav {
        display: flex;
        align-items: center;
        gap: 6px;
    }


    /* HIDE LINKS ON PHONE */

    .nav a[href="#finder"],
    .nav a[href="/about/"] {
        display: none;
    }


    /* PROFILE / SIGN IN */

    .nav .profile-btn,
    .nav .signin-btn {
        padding: 7px 11px;

        font-size: 10px;

        border-radius: 7px;
    }

}


/* =========================================================
   FIRST HERO - TABLET
========================================================= */

@media (max-width: 1050px) {

    .travel-ai-hero {
        width: calc(100% - 40px);

        min-height: 750px;
    }


    .travel-ai-content {
        grid-template-columns: minmax(0, 1fr) 390px;

        gap: 40px;

        padding: 60px 50px 90px;
    }


    .travel-ai-left h1 {
        font-size: clamp(3.5rem, 7vw, 5.5rem);
    }


    .ai-chat {
        min-height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .travel-ai-hero {
        width: calc(100% - 24px);

        min-height: auto;

        margin: 12px auto;

        border-radius: 24px;
    }


    .travel-ai-content {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 45px;

        min-height: auto;

        padding: 45px 25px 75px;
    }


    .travel-ai-left {
        max-width: none;
    }


    .travel-ai-left h1 {
        font-size: clamp(3rem, 13vw, 5rem);
    }


    .travel-ai-left > p {
        font-size: 0.9rem;

        line-height: 1.7;
    }


    .travel-hero-location {
        margin-top: 30px;
    }


    .travel-ai-right {
        width: 100%;
    }


    .ai-chat {
        min-height: 350px;

        border-radius: 20px;
    }


    .ai-chat-body {
        padding: 24px;
    }


    .ai-chat-intro h2 {
        font-size: 28px;
    }


    .travel-hero-dots {
        left: 25px;
        bottom: 22px;

        transform: none;

        max-width: calc(100% - 50px);

        flex-wrap: wrap;

        justify-content: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .travel-ai-hero {
        width: calc(100% - 16px);

        margin: 8px auto;

        border-radius: 20px;
    }


    .travel-ai-content {
        padding: 35px 20px 70px;

        gap: 35px;
    }


    .travel-ai-left h1 {
        font-size: 3rem;
    }


    .ai-chat-body {
        padding: 20px;
    }


    .ai-chat-intro h2 {
        font-size: 25px;
    }


    .ai-suggestions {
        gap: 5px;
    }


    .ai-suggestion {
        font-size: 10px;

        padding: 7px 10px;
    }

}