/* =========================================================
   OSV AI TRAVEL PLANNER
   NEW GLOBAL DESIGN SYSTEM
   PART 1 — FOUNDATION
========================================================= */


/* =========================================================
   DESIGN VARIABLES
========================================================= */

:root {

    --osv-navy: #07152f;
    --osv-navy-dark: #040d20;
    --osv-blue: #1769e0;
    --osv-blue-dark: #0d4fb8;
    --osv-blue-light: #eaf3ff;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --surface: #ffffff;
    --surface-soft: #f1f5fa;

    --text-primary: #101828;
    --text-secondary: #667085;
    --text-light: #98a2b3;

    --border: #e4e7ec;
    --border-light: #edf0f5;

    --success: #12b76a;

    --shadow-sm:
        0 4px 16px rgba(16, 24, 40, 0.06);

    --shadow-md:
        0 12px 32px rgba(16, 24, 40, 0.09);

    --shadow-lg:
        0 24px 60px rgba(16, 24, 40, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1200px;

    --transition:
        0.3s ease;

}


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

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


/* =========================================================
   HTML
========================================================= */

html {

    scroll-behavior: smooth;
    scroll-padding-top: 90px;

}


/* =========================================================
   BODY
========================================================= */

body {

    font-family:
        'Poppins',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    background: var(--off-white);

    color: var(--text-primary);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


/* =========================================================
   BASIC ELEMENTS
========================================================= */

img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    border: none;

}


ul,
ol {

    list-style: none;

}


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

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   SECTION FOUNDATION
========================================================= */

section {

    position: relative;

}


.section-heading {

    width: min(
        100%,
        760px
    );

    margin: 0 auto 60px;

    text-align: center;

}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--osv-blue);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.section-heading h2 {

    margin-bottom: 16px;

    color: var(--text-primary);

    font-size: clamp(
        30px,
        4vw,
        44px
    );

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1px;

}


.section-heading p {

    max-width: 680px;

    margin-inline: auto;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   COMMON BUTTONS
========================================================= */

.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.primary-btn {

    background: var(--osv-blue);

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(23, 105, 224, 0.22);

}


.primary-btn:hover {

    background: var(--osv-blue-dark);

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(23, 105, 224, 0.28);

}


.secondary-btn {

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.08);

    color: var(--white);

    backdrop-filter: blur(12px);

}


.secondary-btn:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--osv-navy);

    transform: translateY(-2px);

}


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

:focus-visible {

    outline: 3px solid rgba(23, 105, 224, 0.35);

    outline-offset: 3px;

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background: var(--osv-blue);

    color: var(--white);

}


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

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: #eef2f7;

}


::-webkit-scrollbar-thumb {

    background: #b8c4d6;

    border-radius: 999px;

}


::-webkit-scrollbar-thumb:hover {

    background: #8fa0b8;

}


/* =========================================================
   TABLET FOUNDATION
========================================================= */

@media (max-width: 992px) {

    .container {

        width: min(
            calc(100% - 32px),
            var(--container)
        );

    }

    .section-heading {

        margin-bottom: 44px;

    }

}


/* =========================================================
   MOBILE FOUNDATION
========================================================= */

@media (max-width: 768px) {

    html {

        scroll-padding-top: 75px;

    }

    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }

    .section-heading {

        margin-bottom: 36px;

    }

    .section-eyebrow {

        font-size: 11px;

        letter-spacing: 1.2px;

    }

    .section-heading h2 {

        font-size: 30px;

        letter-spacing: -0.5px;

    }

    .section-heading p {

        font-size: 15px;

        line-height: 1.7;

    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

        min-height: 50px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {

        width: calc(100% - 24px);

    }

    .section-heading h2 {

        font-size: 27px;

    }

    .section-heading p {

        font-size: 14px;

    }

}
/* =========================================================
   NAVIGATION
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 78px;

    padding: 0 32px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    background:
        rgba(4, 13, 32, 0.88);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    z-index: 1000;

}


/* =========================================================
   BRAND
========================================================= */

.logo-area {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.brand-link {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo {

    width: 48px;

    height: 48px;

    object-fit: contain;

    border-radius: 8px;

}


.brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.brand-text h2 {

    color: var(--white);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.2px;

}


.brand-text p {

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;

    font-weight: 400;

    line-height: 1.2;

}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;

    margin-left: auto;

}


.nav-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    height: 78px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    font-weight: 500;

    transition:
        color var(--transition);

}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 18px;

    height: 2px;

    background: var(--osv-blue);

    border-radius: 999px;

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform var(--transition);

}


.nav-links a:hover {

    color: var(--white);

}


.nav-links a:hover::after {

    transform:
        scaleX(1);

}


/* =========================================================
   START PLANNING BUTTON
========================================================= */

.nav-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 10px;

    background: var(--osv-blue);

    color: var(--white);

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(23, 105, 224, 0.22);

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);

}


.nav-btn:hover {

    background: var(--osv-blue-dark);

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(23, 105, 224, 0.28);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.06);

    color: var(--white);

    cursor: pointer;

    font-size: 18px;

    transition:
        background var(--transition),
        border-color var(--transition);

}


.menu-toggle:hover {

    background:
        rgba(255, 255, 255, 0.12);

    border-color:
        rgba(255, 255, 255, 0.25);

}


/* =========================================================
   TABLET NAVIGATION
========================================================= */

@media (max-width: 1000px) {

    .navbar {

        padding: 0 22px;

    }

    .nav-links {

        gap: 20px;

    }

    .nav-links a {

        font-size: 13px;

    }

    .nav-btn {

        padding: 0 16px;

    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {

    .navbar {

        height: 70px;

        padding: 0 14px;

        gap: 10px;

    }


    .logo {

        width: 42px;

        height: 42px;

    }


    .brand-link {

        gap: 9px;

    }


    .brand-text h2 {

        font-size: 13px;

    }


    .brand-text p {

        font-size: 8px;

    }


    .menu-toggle {

        display: inline-flex;

        margin-left: auto;

    }


    .nav-links {

        position: absolute;

        top: 70px;

        left: 12px;
        right: 12px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 8px;

        background:
            rgba(4, 13, 32, 0.97);

        border:
            1px solid rgba(255, 255, 255, 0.10);

        border-radius: 14px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.30);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-8px);

        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);

    }


    .nav-links.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .nav-links li {

        width: 100%;

    }


    .nav-links a {

        width: 100%;

        height: auto;

        min-height: 48px;

        padding: 0 14px;

        border-radius: 9px;

        color:
            rgba(255, 255, 255, 0.82);

    }


    .nav-links a:hover {

        background:
            rgba(255, 255, 255, 0.07);

    }


    .nav-links a::after {

        display: none;

    }


    .nav-btn {

        display: none;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .navbar {

        padding: 0 11px;

    }


    .brand-text h2 {

        font-size: 12px;

    }


    .brand-text p {

        font-size: 7px;

    }


    .logo {

        width: 38px;

        height: 38px;

    }

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

.hero {

    position: relative;

    min-height: 760px;

    margin-top: 0;

    overflow: hidden;

    background: var(--osv-navy);

}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-image-layer {

    position: absolute;

    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800");

    background-size: cover;

    background-position: center;

    transform: scale(1.02);

}


/* Dark low-light overlay */

.hero-dark-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 32, 0.94) 0%,
            rgba(4, 13, 32, 0.82) 42%,
            rgba(4, 13, 32, 0.48) 72%,
            rgba(4, 13, 32, 0.62) 100%
        );

}


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

.hero-container {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    min-height: 760px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.75fr);

    align-items: center;

    gap: 70px;

    padding: 80px 0;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 680px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    padding: 8px 13px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.90);

    font-size: 12px;

    font-weight: 600;

    backdrop-filter: blur(10px);

}


.hero-badge-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background:
        rgba(23, 105, 224, 0.90);

    color: var(--white);

    font-size: 11px;

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    max-width: 720px;

    color: var(--white);

    font-size: clamp(
        48px,
        6vw,
        76px
    );

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -2.8px;

}


.hero-title span {

    display: block;

    color:
        #72aaff;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 620px;

    margin-top: 24px;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;

}


.hero-actions .primary-btn {

    min-width: 205px;

}


.hero-actions .secondary-btn {

    min-width: 150px;

}


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

.hero-trust {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 34px;

}


.hero-trust-item {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 12px;

    font-weight: 500;

}


.hero-trust-item i {

    color:
        #72aaff;

    font-size: 13px;

}


.hero-trust-divider {

    width: 1px;

    height: 18px;

    background:
        rgba(255, 255, 255, 0.20);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-image-card {

    position: relative;

    width: min(
        100%,
        480px
    );

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    border-radius: var(--radius-xl);

    background:
        rgba(255, 255, 255, 0.06);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.38);

    transform:
        rotate(1.2deg);

}


.hero-image-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.hero-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 13, 32, 0.04),
            rgba(4, 13, 32, 0.58)
        );

}


/* =========================================================
   FLOATING CARD
========================================================= */

.hero-floating-card {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 15px;

    background:
        rgba(4, 13, 32, 0.78);

    color: var(--white);

    backdrop-filter: blur(16px);

    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.24);

}


.floating-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 42px;

    height: 42px;

    border-radius: 12px;

    background:
        rgba(23, 105, 224, 0.90);

    color: var(--white);

}


.hero-floating-card strong {

    display: block;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.45;

}


.hero-floating-card span {

    display: block;

    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 10px;

}


/* =========================================================
   HERO SCROLL INDICATOR
========================================================= */

.hero-scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 22px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    transform:
        translateX(-50%);

}


.hero-scroll-indicator i {

    font-size: 10px;

}


/* =========================================================
   HERO TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.65fr);

        gap: 40px;

    }


    .hero-title {

        font-size: clamp(
            44px,
            6vw,
            64px
        );

    }


    .hero-image-card {

        max-width: 390px;

    }

}


/* =========================================================
   HERO MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {

        min-height: auto;

        margin-top: 70px;

    }


    .hero-background {

        position: absolute;

    }


    .hero-dark-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(4, 13, 32, 0.88) 0%,
                rgba(4, 13, 32, 0.78) 55%,
                rgba(4, 13, 32, 0.94) 100%
            );

    }


    .hero-container {

        width: calc(100% - 28px);

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 42px;

        padding: 72px 0 70px;

    }


    .hero-content {

        max-width: none;

        text-align: center;

    }


    .hero-badge {

        margin-bottom: 20px;

    }


    .hero-title {

        font-size:
            clamp(
                38px,
                11vw,
                52px
            );

        line-height: 1.05;

        letter-spacing: -1.8px;

    }


    .hero-description {

        margin: 20px auto 0;

        font-size: 15px;

        line-height: 1.7;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-top: 28px;

    }


    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {

        width: 100%;

        min-width: 0;

    }


    .hero-trust {

        justify-content: center;

        gap: 10px 14px;

        margin-top: 26px;

    }


    .hero-trust-divider {

        display: none;

    }


    .hero-trust-item {

        font-size: 10px;

    }


    .hero-visual {

        width: 100%;

    }


    .hero-image-card {

        width: min(
            100%,
            390px
        );

        aspect-ratio: 16 / 10;

        margin: 0 auto;

        border-radius: 22px;

        transform: none;

    }


    .hero-floating-card {

        left: 12px;

        right: 12px;

        bottom: 12px;

        padding: 11px;

    }


    .floating-icon {

        width: 36px;

        height: 36px;

        border-radius: 10px;

    }


    .hero-floating-card strong {

        font-size: 10px;

    }


    .hero-floating-card span {

        font-size: 9px;

    }


    .hero-scroll-indicator {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE HERO
========================================================= */

@media (max-width: 420px) {

    .hero-container {

        padding-top: 58px;

    }


    .hero-title {

        font-size: 36px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-trust-item {

        font-size: 9px;

    }


    .hero-image-card {

        aspect-ratio: 16 / 11;

    }

}
/* =========================================================
   PART 4 — FEATURE STRIP
========================================================= */

.feature-strip {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;

    width: 100%;

    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}


/* ---------------------------------------------------------
   FEATURE ITEM
--------------------------------------------------------- */

.feature-strip > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 86px;
    padding: 18px 20px;

    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-align: center;

    border-right: 1px solid var(--border-light);

    transition:
        background var(--transition),
        color var(--transition);
}

.feature-strip > div:last-child {
    border-right: none;
}


/* ---------------------------------------------------------
   FEATURE ICON
--------------------------------------------------------- */

.feature-strip i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--osv-blue-light);
    color: var(--osv-blue);

    font-size: 16px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.feature-strip > div:hover {
    background: var(--surface-soft);
}

.feature-strip > div:hover i {
    background: var(--osv-blue);
    color: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   FEATURE STRIP — TABLET
========================================================= */

@media (max-width: 900px) {

    .feature-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-strip > div {
        min-height: 78px;
        padding: 16px 12px;

        font-size: 12px;
    }

    .feature-strip > div:nth-child(3) {
        border-right: none;
    }

    .feature-strip > div:nth-child(-n + 3) {
        border-bottom: 1px solid var(--border-light);
    }

    .feature-strip > div:nth-child(4) {
        border-left: none;
    }

    .feature-strip i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 14px;
    }

}


/* =========================================================
   FEATURE STRIP — MOBILE
========================================================= */

@media (max-width: 600px) {

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

    .feature-strip > div {
        min-height: 72px;

        padding: 14px 10px;

        gap: 9px;

        font-size: 11px;
    }

    .feature-strip > div:nth-child(3) {
        border-right: 1px solid var(--border-light);
    }

    .feature-strip > div:nth-child(2),
    .feature-strip > div:nth-child(4) {
        border-right: none;
    }

    .feature-strip > div:nth-child(3),
    .feature-strip > div:nth-child(4) {
        border-bottom: 1px solid var(--border-light);
    }

    .feature-strip > div:nth-child(5) {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: none;
    }

    .feature-strip i {
        width: 34px;
        height: 34px;

        border-radius: 9px;

        font-size: 13px;
    }

}


/* =========================================================
   FEATURE STRIP — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .feature-strip > div {
        min-height: 68px;
        padding: 12px 8px;

        gap: 7px;

        font-size: 10px;
    }

    .feature-strip i {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }

}
/* =========================================================
   DESTINATIONS SECTION
   ========================================================= */

.destinations {
    padding: 110px 0;
    background: #f7f9fc;
}

.destinations .section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.destinations .section-heading .eyebrow {
    margin-bottom: 14px;
}

.destinations .section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.destinations .section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   INTERACTIVE 3D WORLD GLOBE SHOWCASE
   ========================================================= */

/* =========================================================
   CUSTOMIZED OSV 3D WORLD GLOBE COMPONENT
   "OSV AI Travel Planner — Formerly Om Sai Vacations"
   ========================================================= */

.osv-globe-wrapper {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
}

.osv-globe-component {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 45%, #0b192e 0%, #06101f 70%, #02060e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 64px rgba(2, 6, 14, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.osv-globe-component:active {
    cursor: grabbing;
}

.osv-globe-canvas-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    touch-action: none;
}

.osv-globe-canvas-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
    touch-action: none;
}

/* Minimal Integrated Search Bar */
.osv-globe-search-bar {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 20;
    width: 340px;
    max-width: calc(100% - 48px);
}

.osv-globe-search-bar .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.osv-country-search-input {
    width: 100%;
    height: 44px;
    background: rgba(6, 16, 31, 0.82);
    border: 1px solid rgba(23, 105, 224, 0.35);
    border-radius: 999px;
    padding: 0 40px 0 40px;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.osv-country-search-input::placeholder {
    color: #94a3b8;
    font-size: 12.5px;
}

.osv-country-search-input:focus {
    border-color: #1769e0;
    background: rgba(6, 16, 31, 0.95);
    box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.osv-globe-search-bar:focus-within .search-icon {
    color: #1769e0;
}

.osv-search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #cbd5e1;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.osv-search-clear-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Auto-complete dropdown */
.osv-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: rgba(6, 16, 31, 0.96);
    border: 1px solid rgba(23, 105, 224, 0.35);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    z-index: 30;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: #1769e0 #06101f;
}

.osv-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.osv-search-item:hover,
.osv-search-item.highlighted {
    background: rgba(23, 105, 224, 0.22);
    color: #ffffff;
}

.osv-search-item-region {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Minimal Control Dock (Zoom & Reset) */
.osv-globe-controls {
    position: absolute;
    bottom: 22px;
    right: 24px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.osv-ctrl-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(6, 16, 31, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.osv-ctrl-btn:hover {
    background: rgba(23, 105, 224, 0.28);
    border-color: #1769e0;
    color: #ffffff;
    transform: translateY(-1px);
}

.osv-ctrl-btn:active {
    transform: translateY(0);
}

/* Selected Country Destination Details Card */
.osv-destination-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 25;
    max-width: 420px;
    width: calc(100% - 48px);
    background: rgba(6, 16, 31, 0.94);
    border: 1.5px solid rgba(23, 105, 224, 0.45);
    border-radius: 18px;
    padding: 16px 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(23, 105, 224, 0.15);
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: osvCardSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: auto;
}

.osv-destination-card.visible {
    display: flex;
}

@keyframes osvCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.osv-dest-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.osv-dest-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.osv-dest-country-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.osv-dest-highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: rgba(23, 105, 224, 0.18);
    border: 1px solid rgba(23, 105, 224, 0.4);
    border-radius: 999px;
    color: #72aaff;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.osv-dest-close-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.osv-dest-close-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: scale(1.06);
}

.osv-dest-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 100px;
    overflow-y: auto;
}

.osv-dest-city-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.18s ease;
}

.osv-dest-city-chip:hover {
    background: rgba(23, 105, 224, 0.24);
    border-color: rgba(23, 105, 224, 0.45);
    color: #ffffff;
}

.osv-dest-plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    background: #1769e0;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(23, 105, 224, 0.35);
    transition: all 0.2s ease;
}

.osv-dest-plan-btn:hover {
    background: #0d4fb8;
    box-shadow: 0 6px 20px rgba(23, 105, 224, 0.45);
    transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================= */

@media (max-width: 900px) {
    .osv-globe-component {
        height: 500px;
    }

    .osv-globe-search-bar {
        width: 260px;
    }
}

@media (max-width: 680px) {
    .destinations {
        padding: 60px 0;
    }

    .destinations .section-heading {
        margin-bottom: 28px;
    }

    .destinations .section-heading h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .osv-globe-wrapper {
        width: calc(100% - 24px);
    }

    .osv-globe-component {
        height: 440px;
        border-radius: 20px;
    }

    .osv-globe-brand-tag {
        top: 14px;
        left: 14px;
        padding: 6px 12px 6px 10px;
    }

    .osv-globe-brand-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .osv-brand-name {
        font-size: 12px;
    }

    .osv-brand-sub {
        font-size: 9.5px;
    }

    .osv-globe-search-bar {
        top: auto;
        bottom: 14px;
        left: 14px;
        right: 68px;
        width: auto;
        max-width: none;
    }

    .osv-country-search-input {
        height: 40px;
        padding-left: 36px;
        font-size: 12px;
    }

    .osv-globe-search-bar .search-icon {
        left: 12px;
        font-size: 12px;
    }

    .osv-globe-controls {
        bottom: 14px;
        right: 14px;
        gap: 4px;
    }

    .osv-ctrl-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .globe-badge-dot {
        animation: none;
    }

    .region-pill-btn,
    .country-item-btn,
    .destination-chip,
    .destination-plan-btn {
        transition: none !important;
        transform: none !important;
    }
}
/* =========================================================
   CAPABILITY STRIP
   ========================================================= */

.capability-strip {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 1180px;
    margin: 0 auto;

    padding: 32px 30px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;

    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);

    transform: translateY(-35px);
}


/* ---------------------------------------------------------
   CAPABILITY ITEM
   --------------------------------------------------------- */

.capability-item {
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 72px;

    padding: 12px 24px;

    border-right: 1px solid rgba(15, 23, 42, 0.10);
}

.capability-item:nth-child(3n) {
    border-right: none;
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.capability-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

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

    background: rgba(37, 99, 235, 0.10);

    border-radius: 14px;

    color: #2563eb;

    font-size: 19px;
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.capability-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.capability-text strong {
    color: #0f172a;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}

.capability-text span {
    color: #64748b;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.capability-item {
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.capability-item:hover {
    transform: translateY(-2px);
}

.capability-item:hover .capability-icon {
    background: rgba(37, 99, 235, 0.16);
}


/* =========================================================
   CAPABILITY STRIP — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .capability-strip {
        grid-template-columns: repeat(2, 1fr);

        margin-left: 24px;
        margin-right: 24px;

        padding: 24px 20px;

        transform: translateY(-25px);
    }

    .capability-item {
        padding: 14px 16px;
    }

    .capability-item:nth-child(3n) {
        border-right: 1px solid rgba(15, 23, 42, 0.10);
    }

    .capability-item:nth-child(2n) {
        border-right: none;
    }
}


/* =========================================================
   CAPABILITY STRIP — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .capability-strip {
        grid-template-columns: 1fr;

        margin-left: 16px;
        margin-right: 16px;

        padding: 10px 14px;

        border-radius: 18px;

        transform: translateY(-18px);
    }

    .capability-item,
    .capability-item:nth-child(3n),
    .capability-item:nth-child(2n) {
        min-height: 64px;

        padding: 12px 8px;

        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .capability-item:last-child {
        border-bottom: none;
    }

    .capability-icon {
        width: 42px;
        height: 42px;

        border-radius: 12px;

        font-size: 17px;
    }

    .capability-text strong {
        font-size: 13px;
    }

    .capability-text span {
        font-size: 11px;
    }
}
/* =========================================================
   PART 6 — OSV TRUST & VERIFICATION
   ========================================================= */

.trust-section {
    position: relative;

    padding: 120px 24px;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #eef4ff 50%,
            #f8fafc 100%
        );

    overflow: hidden;
}


/* ---------------------------------------------------------
   SUBTLE BACKGROUND GLOW
   --------------------------------------------------------- */

.trust-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -120px;

    background: rgba(37, 99, 235, 0.08);

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
   --------------------------------------------------------- */

.trust-container {
    position: relative;
    z-index: 1;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.trust-content {
    max-width: 650px;
}


/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.trust-content .section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.trust-content h2 {
    margin: 0 0 24px;

    color: #0f172a;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.trust-content h2 span {
    display: block;

    color: #2563eb;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.trust-content > p {
    max-width: 620px;

    margin: 0 0 36px;

    color: #64748b;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   TRUST POINTS
   ========================================================= */

.trust-points {
    display: grid;

    gap: 18px;

    margin-bottom: 34px;
}


/* ---------------------------------------------------------
   TRUST POINT
   --------------------------------------------------------- */

.trust-point {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 14px 0;
}


/* ---------------------------------------------------------
   CHECK ICON
   --------------------------------------------------------- */

.trust-point-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

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

    background: rgba(37, 99, 235, 0.10);

    border-radius: 12px;

    color: #2563eb;

    font-size: 17px;
}


/* ---------------------------------------------------------
   TRUST TEXT
   --------------------------------------------------------- */

.trust-point strong {
    display: block;

    margin-bottom: 5px;

    color: #0f172a;

    font-size: 15px;
    font-weight: 800;
}

.trust-point span {
    display: block;

    color: #64748b;

    font-size: 13px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   START PLANNING BUTTON
   --------------------------------------------------------- */

.trust-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    background: #2563eb;

    color: #ffffff;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.trust-btn:hover {
    background: #1d4ed8;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.28);
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.trust-visual {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* ---------------------------------------------------------
   MAIN TRUST CARD
   --------------------------------------------------------- */

.trust-card-main {
    position: relative;

    width: min(100%, 460px);

    min-height: 300px;

    padding: 42px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            #0f172a,
            #172554
        );

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.22);
}


/* ---------------------------------------------------------
   CARD DECORATION
   --------------------------------------------------------- */

.trust-card-main::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.22);

    filter: blur(4px);
}

.trust-card-main::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -90px;
    left: -60px;

    border-radius: 50%;

    background: rgba(96, 165, 250, 0.10);

    filter: blur(4px);
}


/* ---------------------------------------------------------
   CARD ICON
   --------------------------------------------------------- */

.trust-card-icon {
    position: relative;
    z-index: 1;

    width: 58px;
    height: 58px;

    margin-bottom: auto;

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

    background: #2563eb;

    border-radius: 16px;

    color: #ffffff;

    font-size: 22px;

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.30);
}


/* ---------------------------------------------------------
   CARD TEXT
   --------------------------------------------------------- */

.trust-card-main > span {
    position: relative;
    z-index: 1;

    margin-bottom: 8px;

    color: #93c5fd;

    font-size: 13px;
    font-weight: 700;
}

.trust-card-main > strong {
    position: relative;
    z-index: 1;

    color: #ffffff;

    font-size: 25px;
    font-weight: 800;

    line-height: 1.25;
}


/* =========================================================
   FLOATING CARD
   ========================================================= */

.trust-floating-card {
    position: absolute;

    right: 0;
    bottom: 35px;

    width: 290px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(15, 23, 42, 0.08);

    border-radius: 18px;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.16);

    backdrop-filter: blur(12px);
}


/* ---------------------------------------------------------
   FLOATING ICON
   --------------------------------------------------------- */

.trust-floating-card > i {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

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

    background: rgba(37, 99, 235, 0.10);

    border-radius: 12px;

    color: #2563eb;

    font-size: 17px;
}


/* ---------------------------------------------------------
   FLOATING TEXT
   --------------------------------------------------------- */

.trust-floating-card strong {
    display: block;

    margin-bottom: 4px;

    color: #0f172a;

    font-size: 14px;
}

.trust-floating-card span {
    display: block;

    color: #64748b;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .trust-section {
        padding: 90px 24px;
    }

    .trust-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .trust-content {
        max-width: 720px;

        margin: 0 auto;
    }

    .trust-visual {
        max-width: 600px;

        width: 100%;

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .trust-section {
        padding: 72px 18px;
    }

    .trust-container {
        gap: 42px;
    }

    .trust-content .section-eyebrow {
        margin-bottom: 14px;

        font-size: 11px;

        letter-spacing: 1.6px;
    }

    .trust-content h2 {
        margin-bottom: 18px;

        font-size: 38px;

        letter-spacing: -1.3px;

        line-height: 1.08;
    }

    .trust-content > p {
        margin-bottom: 26px;

        font-size: 14px;

        line-height: 1.7;
    }

    .trust-points {
        gap: 10px;

        margin-bottom: 26px;
    }

    .trust-point {
        gap: 12px;

        padding: 10px 0;
    }

    .trust-point-icon {
        width: 38px;
        height: 38px;

        border-radius: 10px;

        font-size: 15px;
    }

    .trust-point strong {
        font-size: 14px;
    }

    .trust-point span {
        font-size: 12px;
    }

    .trust-btn {
        width: 100%;

        min-height: 50px;
    }

    .trust-visual {
        min-height: 330px;
    }

    .trust-card-main {
        width: 100%;

        min-height: 260px;

        padding: 28px;

        border-radius: 22px;
    }

    .trust-card-icon {
        width: 50px;
        height: 50px;

        border-radius: 14px;

        font-size: 19px;
    }

    .trust-card-main > strong {
        font-size: 21px;
    }

    .trust-floating-card {
        right: 10px;
        bottom: 12px;

        width: calc(100% - 40px);

        padding: 15px;

        border-radius: 15px;
    }

    .trust-floating-card > i {
        width: 38px;
        height: 38px;

        border-radius: 10px;
    }

    .trust-floating-card strong {
        font-size: 13px;
    }

    .trust-floating-card span {
        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .trust-section {
        padding: 60px 15px;
    }

    .trust-content h2 {
        font-size: 34px;
    }

    .trust-card-main {
        min-height: 240px;

        padding: 24px;
    }

    .trust-floating-card {
        width: calc(100% - 25px);

        right: 5px;
    }
}
/* =========================================================
   PART 6A — AI PLANNER FEATURES
   ========================================================= */

.features {
    position: relative;

    padding: 120px 24px;

    background: #ffffff;

    overflow: hidden;
}

.features .section-heading {
    max-width: 820px;

    margin: 0 auto 70px;

    text-align: center;
}

.features .section-eyebrow,
.how-it-works .section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.features .section-heading h2,
.how-it-works .section-heading h2 {
    margin: 0 0 22px;

    color: #0f172a;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.features .section-heading p,
.how-it-works .section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: 17px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   FEATURE GRID
   --------------------------------------------------------- */

.feature-grid {
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* ---------------------------------------------------------
   FEATURE CARD
   --------------------------------------------------------- */

.feature-card {
    position: relative;

    padding: 30px 26px;

    min-height: 245px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.10);
}


/* ---------------------------------------------------------
   FEATURE ICON
   --------------------------------------------------------- */

.feature-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eaf1ff;

    border-radius: 14px;

    color: #2563eb;

    font-size: 20px;
}


/* ---------------------------------------------------------
   FEATURE TEXT
   --------------------------------------------------------- */

.feature-card h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.3;
}

.feature-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   PART 6A — HOW IT WORKS
   ========================================================= */

.how-it-works {
    position: relative;

    padding: 120px 24px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #eef4ff 100%
        );

    overflow: hidden;
}

.how-it-works .section-heading {
    max-width: 820px;

    margin: 0 auto 75px;

    text-align: center;
}


/* ---------------------------------------------------------
   STEPS GRID
   --------------------------------------------------------- */

.steps {
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    position: relative;
}


/* ---------------------------------------------------------
   STEP CARD
   --------------------------------------------------------- */

.step-card {
    position: relative;

    padding: 30px 26px;

    min-height: 290px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

    overflow: hidden;
}


/* ---------------------------------------------------------
   STEP NUMBER
   --------------------------------------------------------- */

.step-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #dbe7ff;

    font-size: 48px;

    font-weight: 900;

    line-height: 1;
}


/* ---------------------------------------------------------
   STEP ICON
   --------------------------------------------------------- */

.step-icon {
    position: relative;

    width: 54px;
    height: 54px;

    margin-bottom: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #2563eb;

    border-radius: 15px;

    color: #ffffff;

    font-size: 19px;

    box-shadow:
        0 10px 22px rgba(37, 99, 235, 0.20);
}


/* ---------------------------------------------------------
   STEP TEXT
   --------------------------------------------------------- */

.step-card h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 18px;

    line-height: 1.3;
}

.step-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

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

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .features,
    .how-it-works {
        padding: 80px 18px;
    }

    .features .section-heading,
    .how-it-works .section-heading {
        margin-bottom: 45px;
    }

    .features .section-eyebrow,
    .how-it-works .section-eyebrow {
        font-size: 11px;

        letter-spacing: 1.5px;

        margin-bottom: 14px;
    }

    .features .section-heading h2,
    .how-it-works .section-heading h2 {
        font-size: 36px;

        letter-spacing: -1.2px;

        line-height: 1.1;
    }

    .features .section-heading p,
    .how-it-works .section-heading p {
        font-size: 14px;

        line-height: 1.65;
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .feature-card {
        min-height: auto;

        padding: 24px 22px;

        border-radius: 17px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 18px;

        border-radius: 12px;

        font-size: 18px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .step-card {
        min-height: auto;

        padding: 25px 22px;

        border-radius: 17px;
    }

    .step-number {
        font-size: 40px;

        top: 17px;
        right: 18px;
    }

    .step-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 20px;

        border-radius: 12px;

        font-size: 17px;
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 12px;
    }
}
/* =========================================================
   DESTINATIONS MORE CTA
   ========================================================= */

.destination-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-bottom: 10px;
    text-align: center;
}

.destination-more span {
    color: #64748b;
    font-size: 16px;
}

.destination-more .text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.destination-more .text-link:hover {
    color: #1d4ed8;
    gap: 10px;
}

.destination-more .text-link i {
    font-size: 13px;
}

/* Mobile */
@media (max-width: 600px) {
    .destination-more {
        flex-direction: column;
        gap: 6px;
        margin-top: 24px;
        padding: 0 20px 10px;
    }

    .destination-more span,
    .destination-more .text-link {
        font-size: 14px;
    }
}
/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #071225;
    color: #ffffff;
    padding: 70px 0 25px;
}

.footer-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
}

.footer-logo {
    width: 72px;
    height: auto;
    object-fit: contain;
}

.footer-brand h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.footer-brand p {
    margin: 12px 0 0;
    max-width: 360px;
    color: #aab7cc;
    line-height: 1.7;
    font-size: 15px;
}

.footer-column h3 {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 800;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aab7cc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-contact {
    color: #aab7cc;
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact p {
    margin: 0 0 10px;
}

.footer-contact a {
    color: #aab7cc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1200px, calc(100% - 80px));
    margin: 50px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #7f8da5;
    font-size: 13px;
}


/* =========================================================
   FOOTER — TABLET
   ========================================================= */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}


/* =========================================================
   FOOTER — MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-container {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        width: 60px;
    }

    .footer-brand h2 {
        font-size: 19px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-bottom {
        width: calc(100% - 40px);
        margin-top: 35px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   FINAL CTA SECTION
   ========================================================= */

.cta-section {
    padding: 90px 0;
}

.cta-section .secondary-button,
.cta-section .btn-secondary {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #dbe3ef;
}

.cta-section .secondary-button:hover,
.cta-section .btn-secondary:hover {
    color: #2563eb;
    border-color: #2563eb;
}

/* Mobile */
@media (max-width: 600px) {
    .cta-section {
        padding: 60px 20px;
    }
}
/* =========================================================
   FINAL CTA - SECONDARY BUTTON FIX
   ========================================================= */

.final-cta .secondary-btn {
    background: #ffffff;
    color: #0b1730;
    border: 1px solid #d9e2f2;
    opacity: 1;
}

.final-cta .secondary-btn:hover {
    background: #eef4ff;
    color: #0b1730;
    border-color: #2563eb;
}

.final-cta .secondary-btn i {
    color: #2563eb;
}
/* =========================================================
   FINAL SPACING FIX — TRUST SECTION
   ========================================================= */

.trust-section {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 60px !important;
}

.trust-section .trust-container {
    min-height: auto !important;
    height: auto !important;
}

.trust-section .trust-grid {
    min-height: auto !important;
    height: auto !important;
}
/* FINAL CLEANUP — REMOVE DUPLICATE TRUST CTA */

.trust-section .primary-btn {
    display: none !important;
}

.trust-section {
    padding-bottom: 40px !important;
}
/* Remove duplicate CTA from Travel Assistance */
.trust-section .primary-btn {
    display: none !important;
}
/* =========================================
   TRAVEL REQUESTS
========================================= */

.request-list {
    display: flex;
    flex-direction: column;
}

.travel-request-card {
    padding: 24px 26px;
    border-bottom: 1px solid #e6ebf2;
    background: #ffffff;
    transition: background 0.2s ease;
}

.travel-request-card:last-child {
    border-bottom: none;
}

.travel-request-card:hover {
    background: #f9fbff;
}

.travel-request-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.travel-request-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: #eaf1ff;
    color: #1769e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.travel-request-info {
    flex: 1;
    min-width: 0;
}

.travel-request-title {
    font-size: 17px;
    font-weight: 700;
    color: #10203d;
    margin-bottom: 8px;
}

.travel-request-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #718098;
    font-size: 13px;
}

.travel-request-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.travel-request-meta i {
    color: #1769e0;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status.progress {
    background: #fff4d6;
    color: #a66a00;
}

.status.confirmed {
    background: #e7f8ee;
    color: #18834b;
}

.status.completed {
    background: #edf0f5;
    color: #5f6b7a;
}

.status i {
    font-size: 8px;
}

.travel-request-footer {
    margin-top: 18px;
    padding-left: 62px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-request-footer .secondary-btn,
.travel-request-footer .primary-btn {
    min-height: 40px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .travel-request-main {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .travel-request-info {
        width: calc(100% - 62px);
    }

    .status {
        margin-left: 62px;
    }

    .travel-request-meta {
        gap: 8px 14px;
    }

    .travel-request-footer {
        padding-left: 0;
        flex-wrap: wrap;
    }
}
/* =========================================================
   OSV PLANNER — PART 1
   Planner Foundation + Navbar + Hero
   ========================================================= */

.planner-page {
    margin: 0;
    min-height: 100vh;
    background: #f7f9fc;
    color: #0f172a;
    overflow-x: hidden;
}

.planner-page * {
    box-sizing: border-box;
}


/* =========================
   NAVBAR
   ========================= */

.planner-page .navbar {
    width: 100%;
    min-height: 72px;
    padding: 10px 5%;

    background: #ffffff;
    border-bottom: 1px solid #e5eaf1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    position: relative;
    z-index: 100;
}

.planner-page .logo-area {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.planner-page .logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.planner-page .logo-area h2 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.planner-page .logo-area p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 9px;
    line-height: 1.2;
}


/* =========================
   NAV LINKS
   ========================= */

.planner-page .nav-links {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 24px;

    list-style: none;
}

.planner-page .nav-links a {
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;

    transition: color 0.2s ease;
}

.planner-page .nav-links a:hover {
    color: #2563eb;
}


/* =========================
   START PLANNING BUTTON
   ========================= */

.planner-page .nav-btn {
    min-height: 40px;
    padding: 9px 16px;

    border-radius: 10px;

    background: #2563eb;
    color: #ffffff !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 10px !important;
    font-weight: 700 !important;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.planner-page .nav-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}


/* =========================
   MOBILE MENU
   ========================= */

.planner-page .menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: #f1f5f9;
    color: #0f172a;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 18px;
}


/* =========================
   PLANNER HERO
   ========================= */

.planner-page .planner-hero {
    width: 100%;
    padding: 72px 20px 78px;

    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 55%,
            #f8fafc 100%
        );

    border-bottom: 1px solid #e5eaf1;

    text-align: center;
}

.planner-page .planner-container {
    width: min(900px, 100%);
    margin: 0 auto;
}


/* =========================
   HERO BADGE
   ========================= */

.planner-page .planner-badge {
    min-height: 32px;
    padding: 7px 13px;

    border: 1px solid #bfdbfe;
    border-radius: 999px;

    background: #ffffff;
    color: #2563eb;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 10px;
    font-weight: 700;

    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.06);
}


/* =========================
   HERO TITLE
   ========================= */

.planner-page .planner-hero h1 {
    margin: 18px 0 12px;

    color: #0f172a;

    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -2px;
}

.planner-page .planner-hero p {
    max-width: 680px;
    margin: 0 auto;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 760px) {

    .planner-page .navbar {
        min-height: 64px;
        padding: 9px 16px;
    }

    .planner-page .logo {
        width: 38px;
        height: 38px;
    }

    .planner-page .logo-area h2 {
        font-size: 13px;
    }

    .planner-page .logo-area p {
        font-size: 8px;
    }

    .planner-page .nav-links,
    .planner-page .nav-btn {
        display: none;
    }

    .planner-page .menu-toggle {
        display: flex;
    }

    .planner-page .planner-hero {
        padding: 55px 18px 58px;
    }

    .planner-page .planner-hero h1 {
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .planner-page .planner-hero p {
        font-size: 13px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 420px) {

    .planner-page .planner-hero {
        padding: 45px 15px 50px;
    }

    .planner-page .planner-hero h1 {
        font-size: 31px;
    }

    .planner-page .planner-hero p {
        font-size: 12px;
    }
}
/* =========================================================
   OSV PLANNER — PART 2
   Planner Form UI
   ========================================================= */

.planner-page .planner-form {
    width: 100%;
    padding: 65px 20px 80px;
    background: #f7f9fc;
}

.planner-page .section-title {
    width: min(760px, 100%);
    margin: 0 auto 30px;
    text-align: center;
}

.planner-page .section-title h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 800;
}

.planner-page .section-title p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   FORM CARD
   ========================= */

.planner-page .form-container {
    width: min(1000px, 100%);
    margin: 0 auto;
    padding: 32px;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;

    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.07);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* =========================
   FORM GROUP
   ========================= */

.planner-page .form-group {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.planner-page .form-group label {
    margin-bottom: 8px;

    color: #334155;

    font-size: 11px;
    font-weight: 750;
}

.planner-page .form-group input,
.planner-page .form-group select,
.planner-page .form-group textarea {
    width: 100%;

    border: 1px solid #dbe3ee;
    border-radius: 11px;

    background: #ffffff;
    color: #0f172a;

    font-family: inherit;
    font-size: 12px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* =========================
   INPUTS
   ========================= */

.planner-page .form-group input,
.planner-page .form-group select {
    min-height: 46px;
    padding: 0 13px;
}

.planner-page .form-group textarea {
    min-height: 115px;
    padding: 12px 13px;
    resize: vertical;
    line-height: 1.55;
}


/* =========================
   PLACEHOLDER
   ========================= */

.planner-page .form-group input::placeholder,
.planner-page .form-group textarea::placeholder {
    color: #94a3b8;
}


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

.planner-page .form-group input:focus,
.planner-page .form-group select:focus,
.planner-page .form-group textarea:focus {
    border-color: #60a5fa;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.08);

    background: #ffffff;
}


/* =========================
   HOVER
   ========================= */

.planner-page .form-group input:hover,
.planner-page .form-group select:hover,
.planner-page .form-group textarea:hover {
    border-color: #cbd5e1;
}


/* =========================
   FULL WIDTH FIELDS
   ========================= */

.planner-page .form-group.full-width {
    grid-column: 1 / -1;
}


/* =========================
   DATE INPUT
   ========================= */

.planner-page input[type="date"] {
    color: #334155;
    cursor: pointer;
}

.planner-page input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.65;
}


/* =========================
   NUMBER INPUT
   ========================= */

.planner-page input[type="number"] {
    appearance: textfield;
}

.planner-page input[type="number"]::-webkit-inner-spin-button,
.planner-page input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.7;
}


/* =========================
   SELECT
   ========================= */

.planner-page select {
    cursor: pointer;
}


/* =========================
   GENERATE BUTTON
   ========================= */

.planner-page .generate-btn {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 54px;

    margin-top: 5px;

    border: 0;
    border-radius: 12px;

    background: #2563eb;
    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 750;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.20);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.planner-page .generate-btn:hover {
    background: #1d4ed8;

    transform: translateY(-1px);

    box-shadow:
        0 13px 28px rgba(37, 99, 235, 0.25);
}

.planner-page .generate-btn:active {
    transform: translateY(0);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 760px) {

    .planner-page .planner-form {
        padding: 48px 16px 60px;
    }

    .planner-page .section-title {
        margin-bottom: 22px;
    }

    .planner-page .section-title h2 {
        font-size: 27px;
    }

    .planner-page .section-title p {
        font-size: 12px;
    }

    .planner-page .form-container {
        padding: 22px 18px;

        grid-template-columns: 1fr;

        gap: 17px;

        border-radius: 18px;
    }

    .planner-page .form-group.full-width {
        grid-column: auto;
    }

    .planner-page .generate-btn {
        grid-column: auto;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 420px) {

    .planner-page .planner-form {
        padding: 40px 12px 50px;
    }

    .planner-page .form-container {
        padding: 18px 14px;
        gap: 15px;
        border-radius: 15px;
    }

    .planner-page .form-group label {
        font-size: 10px;
    }

    .planner-page .form-group input,
    .planner-page .form-group select {
        min-height: 48px;
        font-size: 12px;
    }

    .planner-page .form-group textarea {
        min-height: 110px;
        font-size: 12px;
    }

    .planner-page .generate-btn {
        min-height: 52px;
        font-size: 12px;
    }
}
/* =========================================================
   OSV PLANNER — PART 3
   Premium Form Fields + Field Groups
   ========================================================= */

/* =========================
   FORM FIELD IMPROVEMENTS
   ========================= */

.planner-page .form-group {
    position: relative;
}

.planner-page .form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1e293b;
    letter-spacing: 0.1px;
}

.planner-page .form-group label::after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2563eb;
    opacity: 0.7;
}


/* =========================
   INPUT VISUAL STYLE
   ========================= */

.planner-page .form-group input,
.planner-page .form-group select,
.planner-page .form-group textarea {
    background: #fbfdff;
    border-color: #d9e2ec;
}

.planner-page .form-group input:focus,
.planner-page .form-group select:focus,
.planner-page .form-group textarea:focus {
    background: #ffffff;
}


/* =========================
   NAME + DESTINATION
   ========================= */

.planner-page #name,
.planner-page #destination,
.planner-page #departureCity {
    font-weight: 500;
}

.planner-page #destination::placeholder {
    color: #94a3b8;
}


/* =========================
   DATE FIELDS
   ========================= */

.planner-page #travelDate,
.planner-page #returnDate {
    position: relative;
}


/* =========================
   TRAVELLER FIELDS
   ========================= */

.planner-page #adults,
.planner-page #children {
    text-align: left;
    font-weight: 600;
}


/* =========================
   BUDGET FIELDS
   ========================= */

.planner-page #budget,
.planner-page #estimatedBudget {
    font-weight: 600;
}

.planner-page #estimatedBudget::placeholder {
    font-weight: 400;
}


/* =========================
   SELECT FIELDS
   ========================= */

.planner-page #hotelCategory,
.planner-page #meal,
.planner-page #flight,
.planner-page #visa,
.planner-page #tripType {
    font-weight: 500;
}


/* =========================
   SPECIAL REQUIREMENTS
   ========================= */

.planner-page #requirements {
    min-height: 135px;
}

.planner-page #requirements::placeholder {
    line-height: 1.5;
}


/* =========================
   FORM FIELD HOVER EFFECT
   ========================= */

.planner-page .form-group {
    transition: transform 0.2s ease;
}

.planner-page .form-group:focus-within {
    transform: translateY(-1px);
}

.planner-page .form-group:focus-within label {
    color: #2563eb;
}


/* =========================
   GENERATE AREA
   ========================= */

.planner-page .generate-btn {
    position: relative;
    overflow: hidden;
}

.planner-page .generate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}

.planner-page .generate-btn:hover::before {
    left: 140%;
}

.planner-page .generate-btn i {
    font-size: 12px;
}


/* =========================
   FORM CARD TOP ACCENT
   ========================= */

.planner-page .form-container {
    position: relative;
    overflow: hidden;
}

.planner-page .form-container::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #60a5fa,
        #93c5fd
    );
}


/* =========================
   MOBILE FIELD BEHAVIOUR
   ========================= */

@media (max-width: 760px) {

    .planner-page .form-group:focus-within {
        transform: none;
    }

    .planner-page .form-group input,
    .planner-page .form-group select,
    .planner-page .form-group textarea {
        border-radius: 10px;
    }
}


/* =========================
   VERY SMALL MOBILE
   ========================= */

@media (max-width: 420px) {

    .planner-page .form-group label {
        margin-bottom: 7px;
    }

    .planner-page #requirements {
        min-height: 120px;
    }
}
/* =========================================================
   OSV PLANNER — LOADING OVERLAY
   Hidden until JavaScript activates it
   ========================================================= */

.planner-page .loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(8px);
}

.planner-page .loading-overlay.active {
    display: flex;
}

.planner-page .loading-box {
    width: min(460px, 100%);
    padding: 40px 30px;

    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.planner-page .loading-box h2 {
    margin: 0 0 18px;

    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
}

.planner-page .loading-spinner {
    width: 48px;
    height: 48px;

    margin: 0 auto 20px;

    border: 4px solid #dbeafe;
    border-top-color: #2563eb;
    border-radius: 50%;

    animation: osvPlannerSpin 0.8s linear infinite;
}

@keyframes osvPlannerSpin {
    to {
        transform: rotate(360deg);
    }
}
/* =========================================================
   OSV PLANNER — PART 4
   MOBILE-FIRST POLISH
   ========================================================= */

@media (max-width: 760px) {

    /* ---------- PAGE ---------- */

    .planner-page {
        width: 100%;
        min-width: 0;
    }

    /* ---------- NAVBAR ---------- */

    .planner-page .navbar {
        min-height: 62px;
        padding: 8px 14px;
    }

    .planner-page .logo-area {
        gap: 9px;
    }

    .planner-page .logo {
        width: 36px;
        height: 36px;
    }

    .planner-page .logo-area h2 {
        font-size: 12px;
    }

    .planner-page .logo-area p {
        font-size: 7px;
    }

    .planner-page .menu-toggle {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }


    /* ---------- HERO ---------- */

    .planner-page .planner-hero {
        padding: 46px 16px 48px;
    }

    .planner-page .planner-badge {
        min-height: 30px;
        padding: 6px 10px;
        font-size: 9px;
    }

    .planner-page .planner-hero h1 {
        margin-top: 16px;
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .planner-page .planner-hero p {
        max-width: 520px;
        font-size: 12px;
        line-height: 1.65;
    }


    /* ---------- FORM SECTION ---------- */

    .planner-page .planner-form {
        padding: 42px 12px 55px;
    }

    .planner-page .section-title {
        padding: 0 6px;
        margin-bottom: 22px;
    }

    .planner-page .section-title h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .planner-page .section-title p {
        font-size: 11px;
        line-height: 1.6;
    }


    /* ---------- FORM CARD ---------- */

    .planner-page .form-container {
        width: 100%;
        padding: 20px 15px 22px;

        grid-template-columns: 1fr;
        gap: 17px;

        border-radius: 16px;
    }


    /* ---------- FORM GROUP ---------- */

    .planner-page .form-group {
        width: 100%;
        min-width: 0;
    }

    .planner-page .form-group label {
        margin-bottom: 7px;
        font-size: 10px;
        line-height: 1.3;
    }


    /* ---------- INPUTS ---------- */

    .planner-page .form-group input,
    .planner-page .form-group select {
        width: 100%;
        min-height: 49px;

        padding: 0 12px;

        border-radius: 10px;

        font-size: 13px;
    }

    .planner-page .form-group textarea {
        width: 100%;
        min-height: 125px;

        padding: 12px;

        border-radius: 10px;

        font-size: 13px;
        line-height: 1.5;
    }


    /* ---------- DATE INPUTS ---------- */

    .planner-page input[type="date"] {
        min-height: 49px;
    }


    /* ---------- NUMBER INPUTS ---------- */

    .planner-page input[type="number"] {
        min-height: 49px;
    }


    /* ---------- SELECT ---------- */

    .planner-page select {
        min-height: 49px;
    }


    /* ---------- GENERATE BUTTON ---------- */

    .planner-page .generate-btn {
        width: 100%;
        min-height: 54px;

        margin-top: 3px;

        border-radius: 11px;

        font-size: 12px;

        -webkit-tap-highlight-color: transparent;
    }

    .planner-page .generate-btn:active {
        transform: scale(0.99);
    }


    /* ---------- REMOVE DESKTOP TRANSFORM ---------- */

    .planner-page .form-group:focus-within {
        transform: none;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .planner-page .navbar {
        padding: 8px 12px;
    }

    .planner-page .logo {
        width: 34px;
        height: 34px;
    }

    .planner-page .logo-area h2 {
        font-size: 11px;
    }

    .planner-page .logo-area p {
        display: none;
    }


    /* ---------- HERO ---------- */

    .planner-page .planner-hero {
        padding: 40px 14px 44px;
    }

    .planner-page .planner-badge {
        font-size: 8px;
    }

    .planner-page .planner-hero h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .planner-page .planner-hero p {
        font-size: 11px;
    }


    /* ---------- FORM ---------- */

    .planner-page .planner-form {
        padding: 36px 10px 48px;
    }

    .planner-page .section-title h2 {
        font-size: 23px;
    }

    .planner-page .section-title p {
        font-size: 10px;
    }

    .planner-page .form-container {
        padding: 18px 13px 20px;
        gap: 15px;
        border-radius: 14px;
    }

    .planner-page .form-group input,
    .planner-page .form-group select {
        min-height: 48px;
        font-size: 12px;
    }

    .planner-page .form-group textarea {
        min-height: 120px;
        font-size: 12px;
    }

    .planner-page .generate-btn {
        min-height: 52px;
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .planner-page .logo-area h2 {
        font-size: 10px;
    }

    .planner-page .planner-hero h1 {
        font-size: 27px;
    }

    .planner-page .form-container {
        padding-left: 11px;
        padding-right: 11px;
    }
}



/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .content table,
    .itinerary-body table {
        font-size: 10px !important;
    }

    .content th,
    .content td,
    .itinerary-body th,
    .itinerary-body td {
        padding: 7px 5px !important;
    }

    .content th,
    .itinerary-body th {
        font-size: 9px !important;
    }
}
/* =========================================================
   OSV PLANNER — DESKTOP SECTION TITLE FIX
   ========================================================= */

.planner-page .planner-form {
    background: #f7f9fc !important;
}

.planner-page .section-title {
    width: min(760px, 100%) !important;
    margin: 0 auto 30px !important;
    padding: 0 !important;

    background: transparent !important;
    color: #0f172a !important;

    border: 0 !important;
    box-shadow: none !important;

    text-align: center !important;
}

.planner-page .section-title h2 {
    margin: 0 0 8px !important;

    background: transparent !important;
    color: #0f172a !important;

    font-size: clamp(25px, 3vw, 34px) !important;
    font-weight: 800 !important;
}

.planner-page .section-title p {
    margin: 0 !important;

    background: transparent !important;
    color: #64748b !important;

    font-size: 13px !important;
    line-height: 1.6 !important;
}


/* Desktop planner spacing */
@media (min-width: 761px) {

    .planner-page .planner-form {
        padding-top: 65px !important;
    }

    .planner-page .section-title {
        padding: 0 !important;
        min-height: 0 !important;
    }
}
/* =========================================================
   OSV PLANNER — PART 5
   DESKTOP HEADER + FORM SCALE
   ========================================================= */

@media (min-width: 761px) {

    /* =========================
       HEADER
       ========================= */

    .planner-page .navbar {
        min-height: 82px !important;
        padding: 12px 5% !important;
    }

    .planner-page .logo-area {
        gap: 14px !important;
    }

    .planner-page .logo {
        width: 58px !important;
        height: 58px !important;
        object-fit: contain;
    }

    .planner-page .logo-area h2 {
        font-size: 18px !important;
        line-height: 1.2 !important;
        margin-bottom: 3px !important;
    }

    .planner-page .logo-area p {
        font-size: 10px !important;
        line-height: 1.4 !important;
    }

    .planner-page .nav-links {
        gap: 32px !important;
    }

    .planner-page .nav-links a {
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .planner-page .nav-btn {
        min-height: 46px !important;
        padding: 0 22px !important;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        font-size: 12px !important;
        font-weight: 700 !important;

        border-radius: 10px !important;
    }


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

    .planner-page .planner-hero {
        padding: 82px 8% 86px !important;
    }

    .planner-page .planner-hero h1 {
        font-size: clamp(48px, 5vw, 72px) !important;
        line-height: 1.05 !important;
        letter-spacing: -2.5px !important;
    }

    .planner-page .planner-hero p {
        max-width: 780px !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }


    /* =========================
       FORM SECTION
       ========================= */

    .planner-page .planner-form {
        padding: 78px 5% 90px !important;
    }

    .planner-page .section-title {
        margin-bottom: 38px !important;
    }

    .planner-page .section-title h2 {
        font-size: 38px !important;
    }

    .planner-page .section-title p {
        font-size: 15px !important;
    }


    /* =========================
       FORM CARD
       ========================= */

    .planner-page .form-container {
        width: min(1180px, 100%) !important;
        margin: 0 auto !important;

        padding: 48px !important;

        gap: 24px !important;

        border-radius: 20px !important;
    }


    /* =========================
       FORM FIELDS
       ========================= */

    .planner-page .form-group label {
        margin-bottom: 9px !important;
        font-size: 12px !important;
    }

    .planner-page .form-group input,
    .planner-page .form-group select {
        min-height: 56px !important;
        padding: 0 16px !important;

        font-size: 14px !important;
        border-radius: 11px !important;
    }

    .planner-page .form-group textarea {
        min-height: 150px !important;

        padding: 15px 16px !important;

        font-size: 14px !important;
        line-height: 1.6 !important;

        border-radius: 11px !important;
    }


    /* =========================
       GENERATE BUTTON
       ========================= */

    .planner-page .generate-btn {
        min-height: 60px !important;

        margin-top: 8px !important;

        border-radius: 12px !important;

        font-size: 14px !important;
        font-weight: 700 !important;
    }
}
/* =========================================================
   OSV PLANNER — HEADER REFINEMENT
   ========================================================= */

@media (min-width: 761px) {

    .planner-page .navbar {
        min-height: 88px !important;
        padding: 14px 5% !important;
    }

    /* Logo + brand */
    .planner-page .logo-area {
        gap: 15px !important;
    }

    .planner-page .logo {
        width: 64px !important;
        height: 64px !important;
        object-fit: contain;
    }

    .planner-page .logo-area h2 {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin: 0 0 3px !important;
    }

    .planner-page .logo-area p {
        font-size: 11px !important;
        margin: 0 !important;
    }

    /* Navigation */
    .planner-page .nav-links {
        gap: 34px !important;
    }

    .planner-page .nav-links a {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    /* Start Planning */
    .planner-page .nav-btn {
        min-height: 48px !important;
        padding: 0 24px !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        border-radius: 11px !important;
    }
}
/* Hide main website navigation on the planner page */
.planner-page .nav-links {
    display: none !important;
}
/* =========================================================
   OSV ITINERARY — ACTION BUTTONS
   ========================================================= */

.action-buttons {
    width: min(1100px, calc(100% - 40px));
    margin: 45px auto 20px;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.action-btn {
    min-height: 46px;

    padding: 0 18px;

    border: 1px solid #dbe3ee;
    border-radius: 10px;

    background: #ffffff;
    color: #334155;

    font-family: inherit;
    font-size: 12px;
    font-weight: 650;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.action-btn:hover {
    transform: translateY(-1px);

    border-color: #2563eb;

    color: #2563eb;

    background: #f8fbff;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.08);
}


/* Primary quote button */

.action-btn#requestQuote {
    border-color: #2563eb;

    background: #2563eb;
    color: #ffffff;

    padding-left: 22px;
    padding-right: 22px;
}

.action-btn#requestQuote:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}


/* WhatsApp */

.action-btn#shareWhatsapp:hover {
    border-color: #22c55e;
    color: #16a34a;
    background: #f0fdf4;
}


/* Email */

.action-btn#emailItinerary:hover {
    border-color: #6366f1;
    color: #4f46e5;
    background: #eef2ff;
}


/* Print */

.action-btn#printItinerary:hover {
    background: #f8fafc;
}


/* Download */

.action-btn#downloadPdf:hover {
    background: #eff6ff;
}


/* =========================================================
   MOBILE ACTION BUTTONS
   ========================================================= */

@media (max-width: 760px) {

    .action-buttons {
        width: calc(100% - 24px);

        margin: 30px auto 16px;

        padding: 16px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        border-radius: 15px;
    }

    .action-btn {
        width: 100%;
        min-height: 48px;

        padding: 0 10px;

        font-size: 11px;
        border-radius: 10px;
    }

    .action-btn#requestQuote {
        grid-column: 1 / -1;

        min-height: 52px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .action-buttons {
        width: calc(100% - 20px);

        padding: 13px;

        gap: 8px;
    }

    .action-btn {
        min-height: 47px;

        padding: 0 7px;

        font-size: 10px;
    }

    .action-btn#requestQuote {
        min-height: 50px;
    }
}
/* =========================================================
   OSV ITINERARY — MOBILE TABLE OVERFLOW FIX
   ========================================================= */

@media (max-width: 760px) {

    /* Keep the generated itinerary inside the viewport */
    #result {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Give tables their own horizontal scrolling area */
    #result table {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        -webkit-overflow-scrolling: touch;

        border-spacing: 0 !important;
    }

    #result table thead,
    #result table tbody {
        width: 100%;
    }

    #result table tr {
        width: 100%;
    }

    #result table th,
    #result table td {
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;

        padding: 9px 7px !important;

        font-size: 11px !important;
        line-height: 1.5 !important;

        vertical-align: top !important;
    }

    #result table th {
        font-size: 10px !important;
        line-height: 1.35 !important;
    }
}
/* =========================================================
   OSV DESTINATION HERO
   ========================================================= */

.destination-hero {
    position: relative;
    min-height: 300px;
    margin: 0 0 30px 0;
    padding: 60px 50px;
    border-radius: 24px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.destination-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 0;
}

.destination-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
}

.destination-hero-content span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.destination-hero-content h2 {
    margin: 0 0 10px 0;
    font-size: 48px;
    line-height: 1.1;
    color: #ffffff;
}

.destination-hero-content p {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile */
@media (max-width: 760px) {
    .destination-hero {
        min-height: 220px;
        padding: 40px 25px;
        border-radius: 18px;
    }

    .destination-hero-content h2 {
        font-size: 34px;
    }

    .destination-hero-content p {
        font-size: 15px;
    }
}
/* =========================================================
   OSV ITINERARY HERO — UI POLISH
   ========================================================= */

.planner-hero,
.hero,
.itinerary-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 300px;
    padding: 56px 48px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.planner-hero::before,
.hero::before,
.itinerary-hero::before {
    opacity: 0.9;
}

.planner-hero h1,
.planner-hero h2,
.hero h1,
.hero h2,
.itinerary-hero h1,
.itinerary-hero h2 {
    position: relative;
    z-index: 2;
}

@media (max-width: 760px) {
    .planner-hero,
    .hero,
    .itinerary-hero {
        min-height: 240px;
        padding: 38px 24px;
        border-radius: 18px;
    }
}
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 20px;
    border: 1px solid #d9e2f2;
    border-radius: 10px;
    background: #ffffff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-home-btn:hover {
    background: #eff6ff;
    border-color: #2563eb;
    transform: translateY(-1px);
}
/* Hide header Start Planning button on planner page */
body.planner-page .navbar .nav-btn {
    display: none !important;
}
.ai-cta-note {
    margin: 14px 0 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    max-width: 650px;
}
/* FINAL CTA — POLISHED CENTER ALIGNMENT */

.final-cta {
    width: 100%;
    text-align: center;
}

.final-cta-container {
    width: min(100% - 40px, 900px);
    margin: 0 auto;
}

.final-cta .section-eyebrow {
    display: block;
    text-align: center;
}

.final-cta h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.final-cta-action,
.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

@media (max-width: 600px) {
    .final-cta-container {
        width: calc(100% - 32px);
    }

    .final-cta-action,
    .final-cta-actions {
        flex-direction: column;
    }
}
/* =========================================================
   OSV FINAL CTA — POLISHED
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 20px 85px;
    background:
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 85% 50%, rgba(37, 99, 235, 0.08), transparent 28%),
        #f7faff;
    text-align: center;
}

.final-cta-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #1769e0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.final-cta h2 {
    margin: 0;
    color: #07152f;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.final-cta p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #526582;
    font-size: 18px;
    line-height: 1.7;
}

.final-cta .ai-disclaimer {
    max-width: 760px;
    margin: 28px auto 0;
    padding: 14px 22px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #607494;
    font-size: 14px;
    line-height: 1.6;
}

.final-cta-action,
.final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    width: 100%;
}

.final-cta .primary-btn,
.final-cta .primary-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 210px;
    padding: 16px 28px;
    border-radius: 14px;
    background: #1769e0;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(23, 105, 224, 0.22);
    transition: all 0.2s ease;
}

.final-cta .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 105, 224, 0.28);
}

.final-cta .secondary-btn,
.final-cta .secondary-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 16px 28px;
    border: 1px solid #d7e1f0;
    border-radius: 14px;
    background: #fff;
    color: #07152f;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.final-cta .secondary-btn:hover {
    transform: translateY(-2px);
    border-color: #1769e0;
    color: #1769e0;
    box-shadow: 0 8px 20px rgba(20, 50, 100, 0.08);
}

/* Mobile */
@media (max-width: 600px) {
    .final-cta {
        padding: 65px 18px 60px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .final-cta-action,
    .final-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .final-cta .primary-btn,
    .final-cta .secondary-btn {
        width: 100%;
        min-width: 0;
    }
}
.view-itinerary-btn {
    display: none;
    margin: 25px auto;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.view-itinerary-btn:hover {
    transform: translateY(-2px);
}

.view-itinerary-btn i {
    margin-right: 8px;
}

/* =========================================================
   TOP CTA — BACK TO MAIN WEBSITE
========================================================= */
.osv-top-cta-bar {
    position: relative;
    width: 100%;
    margin-top: 78px;
    background: var(--osv-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    z-index: 95;
}

.osv-top-cta-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.osv-back-main-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.osv-back-main-link:hover {
    background: rgba(23, 105, 224, 0.16);
    border-color: rgba(37, 99, 235, 0.45);
    color: #ffffff;
    transform: translateX(-2px);
}

.osv-back-main-link i {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.osv-back-main-link:hover i {
    color: #60a5fa;
    transform: translateX(-2px);
}

.osv-back-main-link .back-text-mobile {
    display: none;
}

.osv-back-main-link .back-text-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .osv-top-cta-bar {
        margin-top: 70px;
        padding: 8px 0;
    }

    .osv-top-cta-container {
        width: min(calc(100% - 24px), var(--container));
    }

    .osv-back-main-link {
        padding: 8px 14px;
        min-height: 40px;
        font-size: 12.5px;
    }

    .osv-back-main-link .back-text-desktop {
        display: none;
    }

    .osv-back-main-link .back-text-mobile {
        display: inline;
    }
}

/* =========================================================
   BOTTOM CTA — CONTACT US
========================================================= */
.osv-bottom-contact-cta {
    position: relative;
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border);
    padding: 68px 24px 76px;
    text-align: center;
    overflow: hidden;
}

.osv-bottom-contact-container {
    width: min(calc(100% - 40px), 640px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.osv-bottom-contact-prompt {
    font-size: 23px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.35;
    margin: 0;
}

.osv-bottom-contact-btn {
    min-height: 52px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--osv-blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(23, 105, 224, 0.22);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.osv-bottom-contact-btn:hover {
    background: var(--osv-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 105, 224, 0.28);
    color: var(--white);
}

.osv-bottom-contact-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.osv-bottom-contact-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .osv-bottom-contact-cta {
        padding: 46px 18px 54px;
    }

    .osv-bottom-contact-prompt {
        font-size: 19px;
    }

    .osv-bottom-contact-btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
}

/* Footer contact target highlight */
.footer-column#contact:target {
    background: rgba(23, 105, 224, 0.08);
    border-radius: 12px;
    padding: 16px;
    outline: 2px solid rgba(23, 105, 224, 0.35);
    transition: all 0.3s ease;
}
