:root {
    --red: #E8294A;
    --red-dim: rgba(232, 41, 74, .13);
    --red-glow: rgba(232, 41, 74, .32);
    --black: #080810;
    --surface: #0E0E18;
    --border: rgba(255, 255, 255, .07);
    --text: #F0F0F6;
    --muted: #6B6B88;
    --sub: #9898B0;
    --crimson: #E8294A;
    --crimson-dim: rgba(232, 41, 74, .13);
    --crimson-glow: rgba(232, 41, 74, .32);
    --gold: #C9A84C;
    --gold-dim: rgba(201, 168, 76, .12);
    --black: #07070F;
    --surface: #0D0D1A;
    --surface-2: #131325;
    --surface-3: #181830;
    --border: rgba(255, 255, 255, .07);
    --border-hover: rgba(232, 41, 74, .45);
    --text-1: #F0F0F8;
    --text-2: #9292AA;
    --text-3: #55556A;
    --radius-card: 22px;
    --radius-pill: 100px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --trans: .35s var(--ease);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -.02em;
}

body {
    background: var(--black);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    min-height: 100vh;
}

/* NOISE */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .022;
}

/* ═══════════════════════════
   ANIMATED BG CANVAS
═══════════════════════════ */
#bgCanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 100px 100px;
    overflow: hidden;
}

/* ═══════════════════════════
   LEFT CONTENT
═══════════════════════════ */
.hero-left {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border: 1px solid rgba(232, 41, 74, .35);
    background: rgba(232, 41, 74, .08);
    border-radius: 100px;
    margin-bottom: 30px;
    opacity: 0;
    animation: revealUp .7s .1s ease forwards;
}

.hero-badge .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 41, 74, .6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(232, 41, 74, 0);
    }
}

.hero-h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
    opacity: 0;
    animation: revealUp .8s .25s ease forwards;
}

.hero-h1 .plain {
    color: #fff;
}

.hero-h1 .accent {
    position: relative;
    width: fit-content;
    background: linear-gradient(95deg, #E8294A 0%, #FF7088 45%, #E8294A 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

.hero-h1 .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    animation: underlineGrow 1s 1.2s ease forwards;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sub);
    max-width: 500px;
    margin-bottom: 38px;
    opacity: 0;
    animation: revealUp .8s .4s ease forwards;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    opacity: 0;
    animation: revealUp .8s .55s ease forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--red);
    color: #fff;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 200%;
    background: rgba(255, 255, 255, .18);
    transform: skewX(-20deg);
    animation: sheen 3.5s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--red-glow);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .3s, color .3s, transform .2s;
}

.btn-outline:hover {
    border-color: rgba(232, 41, 74, .5);
    color: var(--red);
    transform: translateY(-2px);
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: none;
    border: none;
    color: var(--sub);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color .3s;
}

.play-btn:hover {
    color: #fff;
}

.play-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s, background .3s;
}

.play-btn:hover .play-icon {
    border-color: var(--red);
    background: var(--red-dim);
}

.play-icon i {
    font-size: 12px;
    color: var(--red);
    margin-left: 2px;
}

/* trust */
.trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    animation: revealUp .8s .7s ease forwards;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.avatars {
    display: flex;
}

.av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: linear-gradient(135deg, #1a1a2e, #0e0e18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.av:first-child {
    margin-left: 0;
}

.av.red {
    background: linear-gradient(135deg, var(--red), #ff6b80);
}

.trust-text {
    font-size: 14px;
    color: var(--sub);
}

.trust-text strong {
    color: #fff;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat .val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.trust-stat .lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ═══════════════════════════
   RIGHT — GLOBE + CARDS
═══════════════════════════ */
.hero-right {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

/* Globe */
.globe-wrap {
    width: 520px;
    height: 520px;
    position: relative;
    animation: globeFloat 9s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes globeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(1.2deg);
    }
}

.globe-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 41, 74, .22) 0%, transparent 65%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: .7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.globe-svg {
    width: 100%;
    height: 100%;
}

/* Floating cards */
.fc {
    position: absolute;
    background: rgba(10, 10, 20, .88);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(22px);
    border-radius: 16px;
    padding: 14px 18px;
    opacity: 0;
    z-index: 20;
}

/* card: booking — top left of globe */
.fc-booking {
    top: 40px;
    left: -170px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fcReveal .6s 1.1s ease forwards, fcFloat 7s 1.7s ease-in-out infinite;
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--red-dim);
    border: 1px solid rgba(232, 41, 74, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon i {
    color: var(--red);
    font-size: 15px;
}

.fc-label {
    font-size: 10px;
    color: var(--muted);
}

.fc-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.fc-pill {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .3);
    color: #34d399;
    border-radius: 100px;
    padding: 2px 8px;
}

/* card: AI planner — bottom left */
.fc-ai {
    bottom: 60px;
    left: -185px;
    min-width: 210px;
    animation: fcReveal .6s 1.3s ease forwards, fcFloat2 9s 2s ease-in-out infinite;
}

.ai-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ai-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: pulseDot 2s ease-in-out infinite;
}

.ai-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ai-route {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.ai-arrow {
    color: var(--red);
    font-size: 12px;
}

.ai-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .08);
    margin-top: 10px;
    overflow: hidden;
}

.ai-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--red), #ff8096);
    animation: barFill 2.5s 1.8s ease forwards;
}

.ai-pct {
    font-size: 11px;
    color: var(--sub);
    margin-top: 5px;
}

/* card: rating — right side */
.fc-rating {
    top: 50%;
    right: -130px;
    transform: translateY(-50%);
    text-align: center;
    padding: 20px 26px;
    animation: fcReveal .6s 1.5s ease forwards, fcFloat 10s 2.2s ease-in-out infinite alternate;
}

.fc-rating .stars {
    color: #FBBF24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.fc-rating .r-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.fc-rating .r-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

/* card: live trip — top right of globe */
.fc-live {
    top: 20px;
    right: -110px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fcReveal .6s 1.7s ease forwards, fcFloat2 8s 2.4s ease-in-out infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.live-txt {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.live-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
}

@keyframes fcReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fcFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fcFloat2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@keyframes barFill {
    to {
        width: 78%;
    }
}

/* ═══════════════════════════
   PILLS TICKER
═══════════════════════════ */
.pills-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.pills-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: pillsScroll 28s linear infinite;
}

@keyframes pillsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--sub);
}

.pill i {
    color: var(--red);
    font-size: 12px;
}

/* ═══════════════════════════
   KEYFRAMES
═══════════════════════════ */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textShimmer {
    from {
        background-position: 0%;
    }

    to {
        background-position: 200%;
    }
}

@keyframes underlineGrow {
    to {
        width: 100%;
    }
}

@keyframes sheen {
    0%, 100% {
        left: -60%;
    }

    50% {
        left: 120%;
    }
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media(max-width:1200px) {
    .hero {
        padding: 120px 64px 100px;
        gap: 40px;
    }

    nav {
        padding: 22px 64px;
    }

    .globe-wrap {
        width: 420px;
        height: 420px;
    }

    .fc-rating {
        right: -100px;
    }
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 40px 110px;
        gap: 60px;
    }

    nav {
        padding: 18px 40px;
    }

    .hero-right {
        height: 400px;
    }

    .globe-wrap {
        width: 360px;
        height: 360px;
    }

    .fc-booking {
        top: 10px;
        left: -100px;
    }

    .fc-ai {
        bottom: 10px;
        left: -100px;
    }

    .fc-rating, .fc-live {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

@media(max-width:580px) {
    .hero {
        padding: 90px 28px 100px;
    }

    nav {
        padding: 16px 28px;
    }

    .globe-wrap {
        width: 280px;
        height: 280px;
    }

    .fc-booking, .fc-ai {
        display: none;
    }
}

@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}





.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-body {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.85;
    max-width: 580px;
}

.btn-primary, .primary-btn, .search-btn, .generate-btn, .apply-btn, .book-btn, .all-packages-btn, .cta-btn.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 30px;
    background: var(--crimson);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    transition: var(--trans);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover, .primary-btn:hover, .search-btn:hover, .generate-btn:hover, .apply-btn:hover, .book-btn:hover, .all-packages-btn:hover, .cta-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px var(--crimson-glow);
    color: #fff;
}

.btn-ghost, .secondary-btn, .view-btn, .view-more-btn, .cta-btn.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    background: transparent;
    color: var(--text-1);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    transition: var(--trans);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.btn-ghost:hover, .secondary-btn:hover, .view-btn:hover, .view-more-btn:hover, .cta-btn.secondary-btn:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

.card-base {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    transition: var(--trans);
}

.card-base:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .45);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--crimson-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.gold-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-dim);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

@media (prefers-reduced-motion:no-preference) {
    .wow {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .65s var(--ease), transform .65s var(--ease);
    }

    .wow.animated {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================  HERO  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.hero .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    filter: saturate(.6);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(7, 7, 15, .55) 0%, var(--black) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
    opacity: .18;
}

.circle, .particle {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(46px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-1);
    margin-bottom: 14px;
}

.hero-title span {
    color: var(--crimson);
}

.hero-text {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-2);
    line-height: 1.7;
    max-width: 560px;
    margin: 22px 0 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Floating info cards */
.info-cards {
    position: absolute;
    right: 40px;
    top: 170px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: rgba(13, 13, 26, .88);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 18px 22px;
    min-width: 200px;
    animation: floatY 6s ease-in-out infinite;
}

.info-card:nth-child(2) {
    animation-delay: 2s;
}

.info-card:nth-child(3) {
    animation-delay: 4s;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.info-card p:first-child {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
}

.info-card p:last-child {
    font-size: 12px;
    color: var(--text-2);
}

/* Search box */
.search-box {
    margin-top: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.search-item {
    flex: 1;
    min-width: 170px;
    border-right: 1px solid var(--border);
    padding-right: 15px;
}

.search-item:last-child {
    border-right: none;
}

.search-item label {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.custom-select {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    padding: 0;
    box-shadow: none !important;
    width: 100%;
}

.custom-select option {
    background: var(--surface-2);
    color: var(--text-1);
}

.search-btn {
    padding: 18px 38px;
    border-radius: 18px;
    font-size: 16px;
}

/* ============================================================  SECTION GENERIC  */
.section-pad {
    padding: 120px 0;
}

.bg-surface {
    background: var(--surface);
}

.bg-black {
    background: var(--black);
}

.section-header {
    margin-bottom: 56px;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.title-flex h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
}

/* ============================================================  DESTINATIONS GRID  */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 18px;
    margin-top: 56px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--trans);
}

.destination-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.85);
}

.destination-card.tall {
    grid-row: span 2;
}

.destination-card.small-card {
    grid-column: span 1;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 15, .92) 0%, transparent 60%);
}

.rating {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(13, 13, 26, .8);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
}

.card-content span {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    background: var(--crimson-dim);
    border: 1px solid rgba(232, 41, 74, .28);
    color: var(--crimson);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 2px;
}

.card-content p {
    font-size: 13px;
    color: var(--text-2);
}

/* ============================================================  PACKAGES  */
.packages-header {
    margin-bottom: 56px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    overflow: hidden;
}

.package-image {
    position: relative;
    height: 220px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.85);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, .9) 0%, transparent 55%);
}

.package-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--crimson);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.package-tag.green {
    background: #3aa56a;
}

.package-tag.luxury {
    background: var(--gold);
    color: #1a1500;
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(13, 13, 26, .7);
    color: #fff;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans);
}

.wishlist-btn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
}

.package-content {
    padding: 26px 24px;
}

.package-content .location {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--crimson);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.package-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 14px;
    line-height: 1.35;
}

.package-info {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.package-info span {
    font-size: 13px;
    color: var(--text-2);
}

.package-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.package-features span {
    font-size: 11px;
    color: var(--text-2);
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.package-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.price-box small {
    font-size: 11px;
    color: var(--text-3);
    display: block;
}

.price-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-1);
    display: inline;
}

.price-box span {
    font-size: 12px;
    color: var(--text-2);
}

.book-btn {
    padding: 11px 24px;
    font-size: 13px;
}

/* ============================================================  AI TRIP / FEATURE SPLIT  */
.ai-trip-section .split, .feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-content .mini-title {
    margin-bottom: 14px;
}

.ai-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.ai-content h2 span {
    color: var(--crimson);
}

.ai-content>p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 30px;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.feature-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--trans);
}

.feature-box:hover {
    border-color: var(--border-hover);
}

.feature-box .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--crimson-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
}

/* Trip builder card */
.trip-builder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
}

.builder-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.builder-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-1);
}

.live-badge {
    background: var(--crimson-dim);
    color: var(--crimson);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(232, 41, 74, .28);
}

.trip-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
}

.trip-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 14px;
}

.trip-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.trip-tags span {
    font-size: 12px;
    color: var(--text-2);
    background: var(--surface-3);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.progress-text {
    font-size: 12px;
    color: var(--text-2);
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-text span {
    color: var(--gold);
    font-weight: 700;
}

.progress-bar-custom, .custom-progress {
    height: 6px;
    background: var(--surface-3);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-fill, .custom-progress-bar {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    border-radius: var(--radius-pill);
}

.custom-progress-bar {
    width: 92%;
}

.timeline-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
}

.timeline-day {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--crimson);
    text-transform: uppercase;
    min-width: 48px;
}

.timeline-content {
    flex: 1;
    font-size: 13px;
    color: var(--text-2);
}

.timeline-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================================  VISA  */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 56px;
}

.visa-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px 22px;
    text-align: center;
    transition: var(--trans);
}

.visa-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.visa-country {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: var(--crimson-dim);
    color: var(--crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 16px;
}

.visa-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.visa-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.visa-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-2);
}

.visa-row strong {
    color: var(--text-1);
    font-weight: 600;
}

.approval-rate {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
}

.approval-text {
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: .1em;
    margin-bottom: 18px;
}

.visa-card .apply-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 13px;
}

/* ============================================================  WHY  */
.why-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.why-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--crimson-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1);
}

.why-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
}

/* ============================================================  TESTIMONIALS  */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.testimonial-item {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 24px;
    color: var(--crimson);
    margin-bottom: 14px;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.8;
    flex: 1;
}

.testimonial-user {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--crimson-dim);
    border: 1px solid rgba(232, 41, 74, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--crimson);
    font-size: 13px;
    flex-shrink: 0;
}

.user-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
}

.user-info span {
    font-size: 11px;
    color: var(--text-3);
}

/* ============================================================  STATS  */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.stats-card {
    background: var(--surface);
    padding: 50px 30px;
    text-align: center;
    transition: var(--trans);
}

.stats-card:hover {
    background: var(--surface-2);
}

.stats-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--crimson-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.stats-card h2 {
    display: inline;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-1);
}

.stats-card .plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
}

.stats-card p {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 8px;
}

/* ============================================================  GALLERY  */
.gallery-header {
    margin-bottom: 56px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--trans);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.85);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 15, .9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-content span {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.gallery-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
}

.gallery-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(7, 7, 15, .92);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-popup.active {
    display: flex;
}

.popup-image-box {
    max-width: 800px;
    width: 90%;
}

.popup-image {
    width: 100%;
    border-radius: var(--radius-card);
    display: block;
}

.popup-content {
    padding: 18px 4px;
}

.popup-location {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    background: var(--crimson-dim);
    color: var(--crimson);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.popup-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
}

.popup-close, .popup-btn {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans);
}

.popup-close:hover, .popup-btn:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

.popup-close {
    top: 30px;
    right: 30px;
}

.popup-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.popup-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================================  AI CTA  */
.ai-cta-section {
    padding: 120px 0;
}

.cta-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 70px 64px;
    background: linear-gradient(130deg, rgba(232, 41, 74, .12) 0%, rgba(13, 13, 26, 1) 55%);
    border: 1px solid rgba(232, 41, 74, .2);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-left h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-left>p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ai-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
}

.ai-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.ai-badge {
    background: var(--crimson-dim);
    color: var(--crimson);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(232, 41, 74, .28);
}

.online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3aa56a;
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.ai-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.ai-card ul li {
    font-size: 14px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--crimson);
    font-size: 13px;
}

.progress-box .progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-2);
    margin-bottom: 8px;
}

.progress-box .progress-text strong {
    color: var(--gold);
}

/* ============================================================  RESPONSIVE  */
@media(max-width:1100px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .destination-card.tall {
        grid-row: auto;
        height: 380px;
    }

    .destination-card {
        height: 180px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .ai-trip-section .split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .visa-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item.large {
        grid-row: auto;
        height: 420px;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }

    .info-cards {
        display: none;
    }
}

@media(max-width:700px) {
    .visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr;
    }

    .ai-features {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large, .gallery-item.wide {
        height: 240px;
    }

    .title-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .search-item {
        border-right: none;
        padding-right: 0;
    }
}