/* ── RESET & ROOT ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple-light: #A78BCA;
    --purple: #9810FA;
    --main: #500EAF;
    --main-deep: #2D5FA6;
    --pink: #E94088;
    --cyan: #1BC8D8;
    --green: #22C55E;
    --orange: #F97316;
    --dark: #1a1a2e;
    --text: #1e1e2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f5f6fa;
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.13);
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    padding-top: var(--nav-height);
    opacity: 0;
    animation: pageReveal 0.55s ease forwards;
}

@keyframes pageReveal {
    to {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

/* ── NAVBAR ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
}

.site-nav {
    position: relative;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.35s ease, box-shadow 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease, height 0.3s ease;
}

.nav-desktop,
.nav-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
}

.nav-logo .logo-icon {
    width: 75px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.22);
}

.nav-links a span.icon {
    font-size: 13px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--main), var(--purple)) !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 24px !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(123, 94, 167, 0.45);
}

/* ── Navbar scroll transition ── */

/* Scrolled state */
.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
    height: 54px;
}

/* Logo text color change on scroll */
.site-nav.scrolled .nav-logo {
    color: #1a1a2e;
}

/* Logo icon gradient stays, just a subtle shadow */
/* .site-nav.scrolled .nav-logo .logo-icon {
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.25);
} */

/* Nav link pills — from glass white to light grey */
.site-nav.scrolled .nav-links a {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #4b5563;
}

.site-nav.scrolled .nav-links a:hover {
    background: #ede9f8;
    color: var(--main);
    border-color: var(--purple);
}

/* CTA button stays gradient but gets a stronger shadow */
.site-nav.scrolled .nav-links .nav-cta {
    background: linear-gradient(135deg, var(--main), var(--purple)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(107, 72, 232, 0.35);
}

/* Hamburger bars turn dark on scroll */
.site-nav.scrolled .nav-hamburger span {
    background: #1a1a2e;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-bottom: 60px;
    margin-top: -70px;
}

.hero-bg-top {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1721679891670-a64a736c7a59?q=80&w=2342&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    z-index: 0;
}

.hero-bg-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(30, 20, 60, 0.35) 0%,
            rgba(60, 40, 100, 0.18) 40%,
            rgba(180, 160, 220, 0.12) 60%,
            rgba(210, 195, 235, 0.70) 75%,
            rgba(195, 175, 228, 0.92) 100%);
}

.hero-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(200, 185, 235, 0) 0%, rgba(180, 160, 220, 0.65) 35%, #cbb8ea 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 80%, rgba(160, 120, 210, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 90%, rgba(130, 100, 200, 0.4) 0%, transparent 60%);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.7);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 110px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Satoshi', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-content .tagline {
    font-family: 'Satoshi', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

/* ── SEARCH CARD ── */
.search-card {
    position: relative;
    z-index: 4;
    background: var(--white);
    border-radius: 35px;
    box-shadow: var(--shadow-md);
    padding: 35px 50px 35px;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}

.search-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4vh;
    margin-bottom: 18px;
}

.search-field {
    padding: 0 20px;
    border-right: 1px solid var(--border);
    position: relative;
}

.search-field:first-child {
    padding-left: 0;
}

.search-field:last-child {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.search-field .field-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.88rem;
}

.search-field .field-inner .icon {
    font-size: 14px;
    color: #9ca3af;
}

.search-field select,
.search-field input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.88rem;
    color: var(--text);
    font-family: inherit;
    cursor: pointer;
}

/* Date field trigger cursor */
.date-trigger {
    cursor: pointer;
    user-select: none;
}

.date-display {
    color: var(--text-light);
    font-size: 0.88rem;
}

.date-display.has-dates {
    color: var(--text);
    font-weight: 500;
}

.search-row-2 {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 2vh;
}

.budget-field {
    flex: 1;
}

.budget-field label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    display: block;
    margin-bottom: 6px;
}

.budget-label-val {
    font-weight: 500;
}

.budget-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.budget-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 20px !important;
    background: linear-gradient(to right, var(--main) 100%, var(--purple));
    outline: none;
    cursor: pointer;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--main);
    box-shadow: 0 2px 8px rgba(80, 14, 175, 0.3);
    cursor: pointer;
}

.budget-slider-wrap span {
    font-size: 0.76rem;
    color: var(--text-light);
}

.travel-type-wrap {
    display: flex;
    flex-direction: column;
}

.travel-btns {
    display: flex;
    gap: 8px;
}

.travel-type-wrap>label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    display: block;
    margin-bottom: 8px;
}

.travel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.travel-btn.active {
    background: linear-gradient(135deg, rgba(123, 94, 167, 0.1), rgba(74, 144, 217, 0.1));
    border-color: var(--main);
    color: var(--main);
}

.travel-btn:not(.active) {
    background: var(--bg-light);
    color: var(--text-light);
}

.ai-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #500EAF, #9810FA);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(123, 94, 167, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-left: auto;
}

.ai-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(123, 94, 167, 0.45);
}

.ai-btn .icon {
    font-size: 16px;
}

/* ════════════════════════════════
   DATE PICKER DROPDOWN
════════════════════════════════ */
.date-field-wrap {
    position: relative;
}

.datepicker-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
    padding: 20px 20px 14px;
    width: 600px;
    z-index: 200;
    border: 1px solid var(--border);
    animation: dpFadeIn 0.18s ease;
}

.datepicker-dropdown.open {
    display: block;
}

@keyframes dpFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.dp-months-label {
    display: flex;
    gap: 120px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.dp-nav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text);
    user-select: none;
    transition: background 0.2s;
    line-height: 1;
}

.dp-nav:hover {
    background: #ede9f8;
    color: var(--purple);
}

.datepicker-calendars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Divider between months */
.datepicker-calendars .dp-calendar:first-child {
    border-right: 1px solid var(--border);
    padding-right: 20px;
}

.dp-day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 6px;
}

.dp-day-headers span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

.dp-cell.empty {
    cursor: default;
}

.dp-cell.disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.dp-cell:not(.disabled):not(.empty):hover {
    background: #ede9f8;
    color: var(--purple);
}

.dp-cell.today:not(.selected) {
    border: 2px solid var(--purple);
    color: var(--purple);
    font-weight: 600;
}

.dp-cell.in-range {
    background: rgba(123, 94, 167, 0.1);
    border-radius: 0;
    color: var(--purple);
}

.dp-cell.selected {
    background: var(--purple) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    font-weight: 700;
    z-index: 1;
}

/* Extend range bg behind start/end circles */
.dp-cell.start.in-range,
.dp-cell.start~.dp-cell.in-range {
    border-radius: 0;
}

.dp-cell.start {
    border-radius: 50% !important;
}

.dp-cell.end {
    border-radius: 50% !important;
}

.datepicker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.dp-hint {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
}

.dp-clear {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.dp-clear:hover {
    background: #ede9f8;
}

/* ── HERO DESTINATIONS ── */
.hero-destinations {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 36px;
    padding: 0 0 10px;
}

.hero-dest-title {
    color: var(--text) !important;
}

.hero-dest-sub {
    color: var(--text-light) !important;
}

.hero-view-all {
    color: var(--main-deep) !important;
}

/* ── SHARED LAYOUT ── */
.section {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.section-sub {
    font-size: 0.85rem;
    color: var(--dark) !important;
    margin-top: 4px;
}

.view-all {
    font-size: 0.84rem;
    color: var(--main) !important;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all:hover {
    text-decoration: underline;
}

/* ── DESTINATIONS GRID ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.dest-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.dest-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.dest-card:hover img {
    transform: scale(1.06);
}

.dest-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 12px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: var(--white);
}

.dest-card-info .city {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
}

.dest-card-info .desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 2px 0 3px;
}

.dest-card-info .hotels {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.8);
}

.dest-card-info .price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
}

/* ── SPECIAL OFFERS ── */
.offers-section {
    background: var(--bg-light);
    padding: 60px 0;
}

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

.offer-card {
    border-radius: var(--radius);
    padding: 28px 24px 22px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.offer-card.pink {
    background: linear-gradient(135deg, #e91e8c, #f94f6e);
}

.offer-card.purple {
    background: linear-gradient(135deg, #500EAF, #9B7EC8);
}

.offer-card.blue {
    background: linear-gradient(135deg, #1BC8D8, #9810FA);
}

.offer-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.05em;
}

.offer-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.offer-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    margin-bottom: 18px;
}

.offer-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.offer-btn:hover {
    background: #f3f4f6;
}

/* ── WHY BOOK ── */
.why-section {
    background: var(--white);
    padding: 70px 0;
}

.why-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 44px;
}

.why-section .section-title {
    font-size: 1.7rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.feature-icon.blue-icon {
    background: linear-gradient(135deg, rgba(74, 144, 217, 0.12), rgba(74, 144, 217, 0.2));
}

.feature-icon.purple-icon {
    background: linear-gradient(135deg, rgba(123, 94, 167, 0.12), rgba(123, 94, 167, 0.2));
}

.feature-icon.green-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.2));
}

.feature-icon.pink-icon {
    background: linear-gradient(135deg, rgba(233, 64, 136, 0.12), rgba(233, 64, 136, 0.2));
}

.feature-card h4 {
    font-weight: 700;
    font-size: 0.97rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ── HOW IT WORKS ── */
.how-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.how-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.how-section .section-title {
    font-size: 1.7rem;
}

.steps-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.steps-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, #500EAF, #9810FA);
    z-index: 0;
}

.step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #500EAF, #9810FA);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(123, 94, 167, 0.35);
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--purple);
}

.step h4 {
    font-weight: 700;
    font-size: 0.97rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ── CTA BANNER ── */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #500EAF 0%, #9810FA 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 12px 0 32px;
    position: relative;
    z-index: 1;
}

.cta-primary-btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: var(--white);
    color: var(--purple);
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ── */
footer {
    background: #0d0e18;
    color: rgba(255, 255, 255, 0.7);
    padding: 52px 40px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-brand .logo .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #500EAF, #9810FA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
    color: #e94088;
}

/* ── SPARKLES CONTAINER ── */
.sparkles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hamburger hidden on desktop */
.nav-hamburger {
    display: none;
}

.landing-mob-overlay,
.landing-mob-drawer {
    display: none;
}

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  (max-width: 768px)
   Desktop stays completely unchanged above this breakpoint.
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ────────────────────────────────────────
     NAVBAR
  ──────────────────────────────────────── */
    .site-nav {
        position: relative;
        padding: 0 16px;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
        z-index: 100;
    }

    :root {
        --nav-height: 56px;
    }

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }

    .nav-logo {
        font-size: 1rem;
        font-weight: 700;
        gap: 10px;
        color: #fff;
    }

    .nav-logo .logo-icon {
        width: 60px;
        height: 50px;
        border-radius: 10px;
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    /* ── Hamburger button ── */
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        margin-left: auto;
        position: relative;
        z-index: 500;
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: transform 0.28s ease, opacity 0.2s ease;
    }

    .site-nav.scrolled .nav-hamburger span {
        background: #1a1a2e;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Overlay ── */
    .landing-mob-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.32);
        z-index: 450;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .landing-mob-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    /* ── Side Drawer ── */
    .landing-mob-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 82%;
        max-width: 320px;
        background: #ffffff;
        z-index: 500;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
        border-radius: 24px 0 0 24px;
    }

    .landing-mob-drawer.open {
        transform: translateX(0);
    }

    /* Header */
    .lmd-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px 16px;
    }

    .lmd-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-weight: 800;
        font-size: 1rem;
        color: #500EAF;
    }

    .lmd-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, #500EAF, #9810FA);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .lmd-close {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #4b5563;
        transition: background 0.2s;
    }

    .lmd-close:hover {
        background: #ede9f8;
        color: #500EAF;
    }

    /* Divider */
    .lmd-divider {
        height: 1px;
        background: #e5e7eb;
        margin: 0 20px;
    }

    /* Nav links */
    .lmd-links {
        display: flex;
        flex-direction: column;
        padding: 8px 0;
    }

    .lmd-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 22px;
        text-decoration: none;
        color: #1a1a2e;
        font-size: 1rem;
        font-weight: 500;
        transition: background 0.15s;
    }

    .lmd-item:hover {
        background: #f7f5ff;
    }

    .lmd-item-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.15s;
    }

    .lmd-item:hover .lmd-item-icon {
        background: #ede9f8;
    }

    .lmd-item:hover .lmd-item-icon svg {
        stroke: #500EAF;
    }

    /* CTA */
    .lmd-cta {
        padding: 20px 20px 16px;
    }

    .lmd-signin-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 15px 20px;
        border-radius: 26px;
        background: linear-gradient(135deg, #500EAF, #9810FA);
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(80, 14, 175, 0.38);
        transition: opacity 0.2s, transform 0.2s;
    }

    .lmd-signin-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    /* Sparkle bottom */
    .lmd-sparkle-bottom {
        flex: 1;
        position: relative;
        min-height: 140px;
        border-radius: 0 0 0 24px;
        overflow: hidden;
        background: linear-gradient(180deg,
                rgba(220, 208, 242, 0) 0%,
                rgba(200, 180, 235, 0.45) 40%,
                rgba(180, 155, 225, 0.72) 100%);
    }

    /* ────────────────────────────────────────
     HERO — beach image top half, white bottom
  ──────────────────────────────────────── */
    .hero {
        display: block;
        position: relative;
        min-height: auto;
        padding-bottom: 0;
        background: #f0eaf8;
        overflow: visible;
    }

    .hero-bg-top {
        position: relative;
        /* take space in flow */
        height: 35vh;
        min-height: 220px;
        max-height: px;
        background-image: url('hero-mobile-bg.png');
        background-size: cover;
        background-position: center top;
        inset: auto;
        border-radius: 0;
    }

    .hero-bg-top::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(100, 60, 160, 0.18) 0%,
                rgba(130, 80, 190, 0.08) 50%,
                rgba(200, 170, 240, 0.25) 80%,
                rgba(210, 180, 245, 0.55) 100%);
    }

    /* Remove floating bottom gradient layer */
    .hero-bg-bottom {
        display: none;
    }

    /* Hero title + tagline sit ON TOP of the beach image */
    .hero-content {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 5;
        text-align: center;
        padding: 24px 20px 0;
        max-width: none;

    }

    .hero-content h1 {
        font-size: 1.65rem;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 2px 16px rgba(60, 20, 120, 0.4);
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .hero-content .tagline {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        text-shadow: 0 1px 8px rgba(60, 20, 120, 0.3);
    }

    .search-card {
        position: relative;
        z-index: 10;
        width: calc(100% - 32px);
        margin: -12vh auto 0;
        padding: 0;
        overflow: hidden;
        background: rgba(256, 256, 256, 0.00);
        border-radius: 25px;
        box-shadow: var(--shadow-md);
    }

    /* ── Row 1: Search Destination (full-width pill) ── */
    .search-row-1 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
        gap: 0;
        box-shadow: 0 8px 32px rgba(80, 40, 160, 0.18);
        border-radius: 25px;
        background-color: #fff;
    }

    /* All fields reset */
    .search-field {
        padding: 14px 16px;
        border-right: none;
        border-bottom: .5px solid var(--border);
    }

    .search-field:first-child {
        padding-left: 16px;
    }

    /* Location: full width row with chevron right */
    .search-row-1 .search-field:first-child {
        flex: 0 0 100%;
        /* full width */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        padding: 16px 16px;
    }

    .search-row-1 .search-field:first-child label {
        display: none;
    }

    .search-row-1 .search-field:first-child .field-inner {
        flex: 1;
        font-size: 0.95rem;
        color: var(--text-light);
        gap: 10px;
    }

    .search-row-1 .search-field:first-child .field-inner::after {
        content: '›';
        font-size: 1.2rem;
        color: var(--text-light);
        margin-left: auto;
    }

    .search-row-1 .search-field:first-child input {
        font-size: 0.92rem;
        color: var(--text-light);
        width: 100%;
    }

    /* Dates + Guests: flexbox row side by side */
    .mob-row-two {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-top: 1px solid var(--border);
    }

    .search-row-1 .search-field:nth-child(2),
    .search-row-1 .search-field:nth-child(3) {
        flex: 1 1 50%;
        /* exactly half width each */
        float: none;
        width: auto;
        border-bottom: none;
        padding: 14px 14px;
    }

    .search-row-1 .search-field:nth-child(2) {
        border-right: 1px solid var(--border);
    }

    .search-row-1 .search-field:nth-child(3) {
        border-right: none;
    }

    .search-row-1::after {
        content: none;
    }

    .search-row-1 .search-field:nth-child(2) label,
    .search-row-1 .search-field:nth-child(3) label {
        font-size: 0.78rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text);
        margin-bottom: 5px;
    }

    .search-row-1 .search-field:nth-child(2) .field-inner,
    .search-row-1 .search-field:nth-child(3) .field-inner {
        font-size: 0.82rem;
        color: var(--text-light);
        gap: 5px;
    }

    .search-row-1 .search-field:nth-child(2) .field-inner::after {
        content: '⌄';
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .search-row-1 .search-field:nth-child(3) select {
        font-size: 0.8rem;
        color: var(--text-mid);
        width: 100%;
    }

    /* ── Row 2: Budget + Travel Type (separate white card below) ── */
    .search-row-2 {
        flex-direction: column;
        gap: 0;
        padding-top: 5px;
        align-items: stretch;
        /* This row is a separate card below the first */
        border-top: none;
        box-shadow: 0 8px 32px rgba(80, 40, 160, 0.18);
        border-radius: 25px;
        background-color: #fff;

    }

    .budget-field {
        padding: 16px 16px 12px;
        border-bottom: none;
    }

    .budget-field label {
        font-size: 0.88rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text);
        margin-bottom: 10px;
        display: block;
    }

    .budget-label-val {
        font-weight: 700;
    }

    .budget-slider-wrap {
        margin-top: 0;
        gap: 8px;
        align-items: center;
    }

    .budget-slider-wrap span {
        font-size: 0.74rem;
        color: var(--text-light);
    }

    input[type=range] {
        height: 10px;
        border-radius: 3px;
    }

    input[type=range]::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
        background: var(--white);
        border: 3px solid var(--purple);
        box-shadow: 0 2px 8px rgba(123, 94, 167, 0.3);
    }

    .travel-type-wrap {
        padding: 12px 16px 16px;
        border-top: 1px solid var(--border);
    }

    .travel-type-wrap>label {
        font-size: 0.88rem;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text);
        margin-bottom: 10px;
        display: block;
    }

    .travel-btns {
        gap: 10px;
    }

    .travel-btn {
        flex: 1;
        justify-content: center;
        padding: 11px 12px;
        font-size: 0.88rem;
        font-weight: 500;
        border-radius: 14px;
        border: 1.5px solid var(--border);
        background: var(--bg-light);
    }

    .travel-btn.active {
        background: rgba(21, 93, 252, 0.06);
        border-color: var(--main);
        color: var(--main);
    }

    /* AI CTA button — outside the card, full width */
    .ai-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: calc(100% - 32px);
        margin: 16px;
        padding: 16px 20px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 6px 24px rgba(107, 72, 232, 0.4);
    }

    /* ────────────────────────────────────────
     POPULAR ESCAPES
     Below the search card on lavender bg
  ──────────────────────────────────────── */
    .hero-destinations {
        margin-top: 28px;
        padding: 0;
        background: transparent;
    }

    .hero-destinations .container {
        padding: 0 16px;
    }

    /* Section header */
    .hero-destinations .section-header {
        align-items: center;
        margin-bottom: 14px;
    }

    .hero-dest-title {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--text) !important;
    }

    .hero-dest-sub {
        font-size: 0.8rem !important;
        color: var(--text-light) !important;
    }

    .hero-view-all {
        font-size: 0.84rem !important;
        color: var(--main) !important;
        font-weight: 600 !important;
        display: flex;
        align-items: center;
        gap: 3px;
        text-decoration: none;
        white-space: nowrap;
    }

    /* Horizontal scroll row — square cards with city name + price */
    .destinations-grid {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .destinations-grid::-webkit-scrollbar {
        display: none;
    }

    .dest-card {
        flex: 0 0 130px;
        width: 130px;
        aspect-ratio: 1 / 1;
        scroll-snap-align: start;
        border-radius: 16px;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
    }

    .dest-card img {
        border-radius: 16px;
    }

    .dest-card-info {
        padding: 8px 8px 8px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
        border-radius: 0 0 16px 16px;
    }

    .dest-card-info .city {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #fff;
        margin-bottom: 2px;
    }

    .dest-card-info .price {
        font-size: 0.68rem;
        font-weight: 700;
        color: #ffd700;
    }

    /* Hide desc and hotels count */
    .dest-card-info .desc,
    .dest-card-info .hotels {
        display: none;
    }

    /* ────────────────────────────────────────
     SPECIAL OFFERS
  ──────────────────────────────────────── */
    .offers-section {
        padding: 36px 0;
    }

    .offers-section .container {
        padding: 0 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 18px;
    }

    .offer-card {
        padding: 22px 20px 18px;
        border-radius: 14px;
    }

    .offer-card h3 {
        font-size: 1.05rem;
    }

    .offer-card p {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    .offer-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    /* ────────────────────────────────────────
     WHY BOOK
  ──────────────────────────────────────── */
    .why-section {
        padding: 40px 0;
    }

    .why-section .container {
        padding: 0 16px;
    }

    .why-section .section-title {
        font-size: 1.3rem;
    }

    .why-section .section-header {
        margin-bottom: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-card h4 {
        font-size: 0.88rem;
    }

    .feature-card p {
        font-size: 0.76rem;
    }

    /* ────────────────────────────────────────
     HOW IT WORKS
  ──────────────────────────────────────── */
    .how-section {
        padding: 40px 0;
    }

    .how-section .container {
        padding: 0 16px;
    }

    .how-section .section-title {
        font-size: 1.3rem;
    }

    .how-section .section-header {
        margin-bottom: 32px;
    }

    .steps-track {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .steps-track::before {
        top: 28px;
        bottom: 28px;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
    }

    .step {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px 28px;
        text-align: center;
    }

    .step-num {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .step-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .step h4 {
        font-size: 0.92rem;
    }

    .step p {
        font-size: 0.78rem;
        max-width: 260px;
    }

    /* ────────────────────────────────────────
     CTA SECTION
  ──────────────────────────────────────── */
    .cta-section {
        padding: 48px 20px;
    }

    .cta-section h2 {
        font-size: 1.35rem;
    }

    .cta-section p {
        font-size: 0.88rem;
        margin: 10px 0 24px;
    }

    .cta-primary-btn {
        padding: 13px 28px;
        font-size: 0.92rem;
        border-radius: 24px;
    }

    /* ────────────────────────────────────────
     FOOTER
  ──────────────────────────────────────── */
    footer {
        padding: 36px 16px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        margin-bottom: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        font-size: 0.78rem;
        margin-bottom: 14px;
    }

    .footer-col h5 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-col ul li {
        margin-bottom: 7px;
    }

    .footer-col ul li a {
        font-size: 0.78rem;
    }

    .footer-bottom {
        font-size: 0.72rem;
        padding-top: 18px;
    }

    /* ────────────────────────────────────────
     DATEPICKER — single month on mobile
  ──────────────────────────────────────── */
    .datepicker-dropdown {
        width: calc(100vw - 32px);
        left: 50%;
        transform: translateX(-50%);
        padding: 14px 12px 10px;
    }

    .datepicker-calendars {
        grid-template-columns: 1fr;
    }

    .datepicker-calendars .dp-calendar:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .dp-months-label {
        gap: 40px;
        font-size: 0.82rem;
    }

    .dp-cell {
        font-size: 0.78rem;
    }

}

/* end @media mobile */

/* ── Extra small phones ── */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .dest-card {
        flex: 0 0 112px;
        width: 112px;
    }

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

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

    .search-card {
        width: calc(100% - 24px);
    }

    .ai-btn {
        width: calc(100% - 24px);
    }
}
