﻿/* ==========================================================================
   STATE PAGE
   Voyage Connect Design System
   Blue + Orange Premium Travel Theme
   ========================================================================== */


@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');



/* ==========================================================================
   ROOT VARIABLES
   ========================================================================== */


:root {
    /* Brand Colors */

    --color-primary: #0077b6;
    --color-primary-dark: #005f91;
    --color-primary-light: #2a93cc;
    --color-accent: #f1921b;
    --color-accent-light: #ffbf69;
    /* Surfaces */

    --color-bg: #f5f8fb;
    --color-surface: #ffffff;
    /* Text */

    --color-text: #20303c;
    --color-text-light: #687887;
    /* Border */

    --color-border: #dde6ee;
    /* Fonts */

    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    /* Layout */

    --container: 1240px;
    /* Radius */

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    /* Shadows */

    --shadow-sm: 0 5px 15px rgba(0,119,182,.08);
    --shadow-md: 0 12px 30px rgba(0,119,182,.12);
    --shadow-lg: 0 20px 45px rgba(0,119,182,.18);
    --transition: .30s ease;
}



/* ==========================================================================
   RESET
   ========================================================================== */


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


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}



img {
    max-width: 100%;
    display: block;
}



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



ul {
    list-style: none;
}



/* ==========================================================================
   PAGE
   ========================================================================== */


.state-page {
    width: 100%;
    max-width: 1220px;
    margin: auto;
    padding: 0 24px;
}



/* ==========================================================================
   CONTAINER
   ========================================================================== */


.hero-container {
    width: min(var(--container),100% - 40px);
    margin: auto;
}



/* ==========================================================================
   BREADCRUMB
   ========================================================================== */



.breadcrumb {
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .9rem;
}


    .breadcrumb a {
        color: var(--color-primary);
        font-weight: 600;
        transition: .25s ease;
    }


        .breadcrumb a:hover {
            color: var(--color-accent);
        }


    .breadcrumb span {
        color: #94a3a8;
    }


    .breadcrumb .current {
        color: var(--color-text-light);
        font-weight: 500;
    }



/* ==========================================================================
   HERO SECTION
   ========================================================================== */


.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 55px 0 35px;
    margin-bottom: 15px;
    color: white;
    background: radial-gradient( circle at 15% 20%, rgba(241,146,27,.28), transparent 35% ), radial-gradient( circle at 85% 80%, rgba(255,255,255,.08), transparent 40% ), linear-gradient( 135deg, #004f7a, #0077b6 55%, #0b8fd3 );
}



    /* premium orange bottom line */

    .hero-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient( 90deg, var(--color-accent), #ffc66c, var(--color-accent) );
    }



    /* decorative circle */

    .hero-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        right: -150px;
        top: -180px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }




.hero-container {
    width: 100%;
    max-width: 1220px;
    margin: auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}



.hero-main {
    max-width: 760px;
}



    .hero-main h1 {
        margin: 0 0 16px;
        font-family: var(--font-heading);
        font-size: clamp(2.2rem,4vw,3.4rem);
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -.03em;
    }



.hero-lede {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 1.05rem;
    line-height: 1.7;
}



    .hero-lede strong {
        color: #ffd58a;
    }



/* ==========================================================================
   SEARCH BAR
   ========================================================================== */


.city-search {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 28px;
}



    .city-search input {
        flex: 1;
        min-width: 280px;
        height: 52px;
        padding: 0 22px;
        border: none;
        border-radius: 999px;
        background: #fff;
        font-size: .95rem;
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
    }



        .city-search input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(241,146,27,.25), 0 12px 30px rgba(0,0,0,.18);
        }



.city-search-jump {
    height: 52px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    transition: .3s;
}



    .city-search-jump:hover {
        background: #d97908;
        transform: translateY(-3px);
    }



/* ==========================================================================
   TRUST STRIP
   ========================================================================== */


.trust-strip {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.20);
}



    .trust-strip li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.9);
        font-size: .92rem;
    }



.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(241,146,27,.20);
    color: #ffd08a;
    font-size: .8rem;
}


/* ==========================================================================
   CITIES SECTION
   ========================================================================== */


.cities-section {
    padding: 70px 0;
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}



    .section-header h2 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.8rem,3vw,2.4rem);
        font-weight: 700;
        color: var(--color-primary);
        position: relative;
        padding-bottom: 12px;
    }



        .section-header h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 75px;
            height: 4px;
            border-radius: 50px;
            background: linear-gradient( 90deg, var(--color-accent), var(--color-primary) );
        }



    .section-header p {
        margin: .5rem 0 0;
        color: var(--color-text-light);
    }




.city-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary);
    font-weight: 700;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}





/* ==========================================================================
   CITY GRID
   ========================================================================== */


.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 32px;
}




/* ==========================================================================
   CITY CARD
   ========================================================================== */


.city-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}



    /* Orange + blue top line */


    .city-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient( 90deg, var(--color-accent), var(--color-primary) );
        z-index: 3;
    }



    .city-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0,119,182,.25);
    }




/* ==========================================================================
   CITY IMAGE
   ========================================================================== */


.city-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #eaf3f8;
}



    .city-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease, filter .35s ease;
    }



.city-card:hover .city-thumb img {
    transform: scale(1.08);
    filter: saturate(1.1);
}




/* Image overlay */


.city-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,95,145,.35), transparent );
}



/* ==========================================================================
   FALLBACK CITY BACKGROUNDS
   ========================================================================== */


.stub-1 {
    background: linear-gradient( 135deg, #dff2ff, #bde3f7 );
}



.stub-2 {
    background: linear-gradient( 135deg, #e7f7f2, #cdebe0 );
}



.stub-3 {
    background: linear-gradient( 135deg, #fff1dd, #ffd59a );
}



.stub-4 {
    background: linear-gradient( 135deg, #e8edff, #ccd9ff );
}




/* ==========================================================================
   CITY CODE BADGE
   ========================================================================== */


.city-code-chip {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,77,120,.88);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,.35);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}





/* ==========================================================================
   CITY DIVIDER
   ========================================================================== */


.city-perf {
    height: 3px;
    background: linear-gradient( 90deg, var(--color-accent), transparent );
}





/* ==========================================================================
   CITY CONTENT
   ========================================================================== */


.city-body {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
}



.city-info {
    min-width: 0;
}



    .city-info h3 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--color-text);
        transition: .3s;
    }



.city-card:hover .city-info h3 {
    color: var(--color-primary);
}



.city-location {
    margin-top: 8px;
    color: var(--color-text-light);
    font-size: .92rem;
}




/* ==========================================================================
   VIEW HOTELS BUTTON
   ========================================================================== */


.city-meta {
    flex-shrink: 0;
}



.view-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}



.city-card:hover .view-button {
    gap: 14px;
    color: var(--color-primary);
}

/* ==========================================================================
   SEO SECTION
   ========================================================================== */

.seo-section {
    padding: 45px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}


    .seo-section h2 {
        margin: 0 0 35px;
        font-family: var(--font-heading);
        font-size: clamp(1.8rem,3vw,2.5rem);
        color: var(--color-primary);
    }


.seo-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}



.seo-point {
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: .3s ease;
}



    .seo-point:hover {
        transform: translateY(-8px);
        border-color: rgba(241,146,27,.35);
        box-shadow: 0 15px 35px rgba(0,119,182,.12);
    }



    .seo-point h3 {
        margin: 0 0 12px;
        font-family: var(--font-heading);
        font-size: 1.35rem;
        color: var(--color-primary);
    }



    .seo-point p {
        margin: 0;
        color: var(--color-text-light);
        line-height: 1.8;
    }



/* ==========================================================================
   EMPTY STATE
   ========================================================================== */


.empty-state {
    padding: 70px 30px;
    background: #fff;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}



.empty-state-title {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
}



.empty-state p {
    color: var(--color-text-light);
}



.empty-state-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    height: 50px;
    padding: 0 30px;
    border-radius: 999px;
    background: linear-gradient( 135deg, var(--color-accent), var(--color-accent-light) );
    color: white;
    font-weight: 600;
    transition: .3s ease;
}



    .empty-state-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(241,146,27,.35);
    }



/* ==========================================================================
   ANIMATION SYSTEM
   ========================================================================== */


@keyframes fadeUp {


    from {
        opacity: 0;
        transform: translateY(25px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-section {
    animation: fadeUp .6s ease both;
}



.city-card {
    animation: fadeUp .55s ease both;
}



    /* stagger effect */

    .city-card:nth-child(1) {
        animation-delay: .05s;
    }

    .city-card:nth-child(2) {
        animation-delay: .1s;
    }

    .city-card:nth-child(3) {
        animation-delay: .15s;
    }

    .city-card:nth-child(4) {
        animation-delay: .2s;
    }

    .city-card:nth-child(5) {
        animation-delay: .25s;
    }

    .city-card:nth-child(6) {
        animation-delay: .3s;
    }



/* ==========================================================================
   SCROLLBAR
   ========================================================================== */


::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #eef5f8;
}


::-webkit-scrollbar-thumb {
    background: linear-gradient( var(--color-primary), var(--color-primary-light) );
    border-radius: 999px;
}


    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent);
    }



/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */


@media(max-width:1100px) {


    .seo-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .hero-section {
        padding: 45px 25px;
    }
}



@media(max-width:768px) {


    .state-page {
        padding: 20px;
    }



    .hero-section {
        padding: 45px 20px;
        border-radius: 24px;
    }



    .hero-main h1 {
        font-size: 2rem;
    }



    .trust-strip {
        flex-direction: column;
        gap: 14px;
    }



    .cities-list {
        grid-template-columns: 1fr;
    }



    .seo-grid {
        grid-template-columns: 1fr;
    }



    .seo-section {
        padding: 30px 20px;
    }
}



@media(max-width:480px) {


    .hero-main h1 {
        font-size: 1.7rem;
    }



    .hero-lede {
        font-size: .95rem;
    }



    .city-body {
        padding: 18px;
    }



    .city-info h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   PREMIUM HERO FINISH
   ========================================================================== */


.hero-section {
    isolation: isolate;
}


    .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background: linear-gradient( 90deg, var(--color-accent), var(--color-accent-light), var(--color-primary) );
    }



.hero-main h1 {
    letter-spacing: -0.03em;
}



.hero-lede strong {
    color: var(--color-accent-light);
}



/* ==========================================================================
   PREMIUM SEARCH BOX
   ========================================================================== */


.city-search {
    position: relative;
}



    .city-search input {
        border: 1px solid rgba(255,255,255,.15);
        transition: .3s ease;
    }



        .city-search input:hover {
            box-shadow: 0 12px 30px rgba(0,0,0,.18);
        }



.city-search-jump {
    background: linear-gradient( 135deg, var(--color-accent), #ffb84d );
}



    .city-search-jump:hover {
        background: linear-gradient( 135deg, #e47e00, var(--color-accent) );
    }



/* ==========================================================================
   HERO TRUST ITEMS
   ========================================================================== */


.trust-strip li {
    padding-right: 20px;
    position: relative;
}



.trust-icon {
    background: rgba(241,146,27,.20);
    color: var(--color-accent-light);
}



.trust-strip li:hover .trust-icon {
    background: var(--color-accent);
    color: white;
}



/* ==========================================================================
   CITY CARD PREMIUM STYLE
   ========================================================================== */


.city-card {
    position: relative;
}



    .city-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, var(--color-primary), var(--color-accent) );
        opacity: .9;
    }



    .city-card:hover {
        border-color: rgba(0,119,182,.25);
    }



/* ==========================================================================
   IMAGE OVERLAY
   ========================================================================== */


.city-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.35), transparent 55% );
    opacity: 0;
    transition: .35s ease;
}



.city-card:hover .city-thumb::after {
    opacity: 1;
}



/* ==========================================================================
   CITY CODE BADGE
   ========================================================================== */


.city-code-chip {
    background: linear-gradient( 135deg, rgba(0,119,182,.95), rgba(0,95,145,.95) );
}



.city-card:hover .city-code-chip {
    background: linear-gradient( 135deg, var(--color-accent), #ffb84d );
    transform: scale(1.05);
}



/* ==========================================================================
   CITY CONTENT
   ========================================================================== */


.city-info h3 {
    transition: .3s ease;
}



.city-location {
    display: flex;
    align-items: center;
    gap: 6px;
}



    .city-location::before {
        content: "📍";
        font-size: .85rem;
    }



.view-button {
    color: var(--color-primary);
}



    .view-button span {
        color: var(--color-accent);
    }



.city-card:hover .view-button {
    color: var(--color-accent);
}



/* ==========================================================================
   SECTION TITLE PREMIUM STYLE
   ========================================================================== */


.section-header h2 {
    position: relative;
    padding-bottom: 12px;
}



    .section-header h2::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 70px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, var(--color-accent), var(--color-primary) );
    }



/* ==========================================================================
   SEO PREMIUM BOX
   ========================================================================== */


.seo-point {
    position: relative;
    overflow: hidden;
}



    .seo-point::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient( 90deg, var(--color-accent), var(--color-primary) );
    }



    .seo-point:hover h3 {
        color: var(--color-accent);
    }



/* ==========================================================================
   PAGE BACKGROUND DEPTH
   ========================================================================== */


.state-page {
    position: relative;
}



    .state-page::before {
        content: "";
        position: fixed;
        width: 400px;
        height: 400px;
        right: -180px;
        top: 120px;
        border-radius: 50%;
        background: rgba(241,146,27,.06);
        z-index: -1;
    }



/* ==========================================================================
   FOCUS ACCESSIBILITY
   ========================================================================== */


a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}



/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */


@media(prefers-reduced-motion:reduce) {


    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}



/* ==========================================================================
   FINAL MOBILE POLISH
   ========================================================================== */


@media(max-width:640px) {


    .hero-container {
        padding: 0;
    }



    .hero-section {
        margin-bottom: 35px;
    }



    .hero-main {
        text-align: center;
    }



    .city-search {
        width: 100%;
    }



        .city-search input {
            height: 50px;
        }



    .trust-strip {
        border-top: 1px solid rgba(255,255,255,.15);
        padding-top: 20px;
    }



    .city-card {
        border-radius: 20px;
    }
}



/* ==========================================================================
   PRINT
   ========================================================================== */


@media print {


    .city-search,
    .trust-strip {
        display: none;
    }
}