/* ============================================================
   TTL HOLIDAYS — homepage.css  (COMPLETE CLEAN FILE)
   @import and :root tokens live in custom.css
   ============================================================ */

/* ============================================================
   HERO BASE
   ============================================================ */
.ttl-hero {
    position: relative;
    min-height: 100vh;
    background: #07111f;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

/* ── Slideshow background ──────────────────────────────── */
.ttl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ttl-hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
    will-change: opacity;
}

    .ttl-hero-bg-slide.active {
        opacity: 1;
    }

    .ttl-hero-bg-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        animation: kenBurns 8s ease-in-out both;
    }

@keyframes kenBurns {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Dark gradient overlays */
.ttl-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 100deg, rgba(7,17,31,.92) 0%, rgba(7,17,31,.72) 32%, rgba(7,17,31,.28) 60%, rgba(7,17,31,.10) 100% );
}

.ttl-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    z-index: 1;
    background: linear-gradient(to top, #07111f 0%, rgba(7,17,31,.6) 50%, transparent 100%);
}

/* ── Slide dots ────────────────────────────────────────── */
.ttl-hero-slide-dots {
    position: absolute;
    left: 80px;
    bottom: 200px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ttl-hero-slide-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: width .4s ease, border-radius .4s ease, background .4s ease;
    border: none;
    padding: 0;
}

    .ttl-hero-slide-dot.active {
        width: 28px;
        border-radius: 4px;
        background: var(--ttl-accent);
    }

/* ── Slide label — bottom right ────────────────────────── */
.ttl-hero-slide-label {
    position: absolute;
    right: 48px;
    bottom: 200px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(7,17,31,.52);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 10px 16px;
    color: #fff;
    min-width: 180px;
}

.ttl-hero-slide-label-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .ttl-hero-slide-label-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: none;
    }

.ttl-hero-slide-label-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.ttl-hero-slide-label-text span {
    font-size: 11px;
    color: rgba(255,255,255,.55);
}

/* ── Hero content ──────────────────────────────────────── */
.ttl-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 160px 80px 200px;
}

.ttl-hero-left {
    max-width: 680px;
}

/* Eyebrow pill */
.ttl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ttl-accent);
    background: rgba(245,166,35,.10);
    border: 1px solid rgba(245,166,35,.22);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 22px;
    width: fit-content;
    animation: fadeUpIn .7s .1s both;
}

    .ttl-hero-eyebrow svg {
        color: var(--ttl-accent);
    }

/* Headline */
.ttl-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    animation: fadeUpIn .7s .2s both;
}

.ttl-hero-headline .script {
    color: var(--ttl-accent);
    font-style: italic;
    font-weight: 700;
}

.ttl-hero-headline .script::after {
    display: none;
}

/* Subtext */
.ttl-hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,.62);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 420px;
    animation: fadeUpIn .7s .3s both;
}

/* Trust badges */
.ttl-hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeUpIn .7s .4s both;
}

.ttl-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ttl-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ttl-badge-icon svg {
        color: var(--ttl-accent);
    }

.ttl-badge-text strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.ttl-badge-text span {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: rgba(255,255,255,.50);
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   SEARCH WIDGET — glassmorphic
   ============================================================ */
.ttl-search-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 80px 36px;
}

.ttl-search-card {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255,255,255,.11);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.18);
    overflow: visible;
}

/* Tab bar */
.ttl-search-tabs {
    display: flex;
    padding: 0 12px;
    background: rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 20px 20px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
}

    .ttl-search-tabs::-webkit-scrollbar {
        display: none;
    }

.ttl-search-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
}

    .ttl-search-tab svg {
        opacity: .55;
    }

    .ttl-search-tab:hover:not(.active) {
        color: rgba(255,255,255,.85);
    }

    .ttl-search-tab.active {
        color: #ffffff;
        border-bottom-color: var(--ttl-accent);
        font-weight: 700;
    }

        .ttl-search-tab.active svg {
            opacity: 1;
        }

/* Panel body */
.ttl-search-panels {
    padding: 16px 20px 18px;
}

.ttl-search-panel {
    display: none;
}

    .ttl-search-panel.active {
        display: block;
    }

/* ── Flight options row ─────────────────────────────────── */
.ttl-flight-options {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ttl-radio-group {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

    .ttl-radio-group label {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        color: rgba(255,255,255,.80);
        white-space: nowrap;
    }

    .ttl-radio-group input[type="radio"] {
        accent-color: var(--ttl-accent);
        width: 14px;
        height: 14px;
    }

.ttl-call-deal {
    margin-left: auto;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

    .ttl-call-deal a {
        color: var(--ttl-accent) !important;
        font-weight: 700;
    }

/* ── Search fields grid ────────────────────────────────── */
.ttl-search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr auto;
    gap: 10px;
    align-items: end;
}

.ttl-field-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ttl-field-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: rgba(255,255,255,.50);
}

/* Input */
.ttl-field-input {
    width: 100%;
    padding: 11px 13px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    -webkit-appearance: none;
}

    .ttl-field-input::placeholder {
        color: rgba(255,255,255,.38);
        font-weight: 400;
    }

    .ttl-field-input:focus {
        background: rgba(255,255,255,.16);
        border-color: var(--ttl-accent);
        box-shadow: 0 0 0 3px rgba(245,166,35,.18);
    }

    .ttl-field-input option {
        background: #0e1d35;
        color: #fff;
    }

/* Date field */
.ttl-field-date {
    position: relative;
}

    .ttl-field-date .ttl-field-input {
        padding-right: 36px;
    }

.ttl-field-date-icon {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

    .ttl-field-date-icon svg {
        stroke: rgba(255,255,255,.45);
    }

/* Pax wrap */
.ttl-pax-wrap {
    position: relative;
}

.ttl-pax-trigger {
    width: 100%;
    padding: 11px 13px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
    transition: border-color .2s;
}

    .ttl-pax-trigger svg {
        stroke: rgba(255,255,255,.55);
        flex-shrink: 0;
    }

.ttl-pax-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: #0e1d35;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
    padding: 16px 18px;
    z-index: 200;
    min-width: 240px;
}

    .ttl-pax-dropdown.open {
        display: block;
        animation: fadeDown .18s ease;
    }

.ttl-pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .ttl-pax-row:last-of-type {
        border-bottom: none;
    }

    .ttl-pax-row label {
        font-family: var(--font-body);
        font-size: 13.5px;
        font-weight: 500;
        color: rgba(255,255,255,.80);
    }

.ttl-pax-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ttl-pax-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background .15s, border-color .15s;
    line-height: 1;
}

    .ttl-pax-btn:hover {
        background: var(--ttl-accent);
        border-color: var(--ttl-accent);
        color: #07111f;
    }

.ttl-pax-val {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: #fff;
}

.ttl-pax-class {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
}

    .ttl-pax-class label {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        display: block;
        margin-bottom: 6px;
        color: rgba(255,255,255,.65);
    }

    .ttl-pax-class select {
        width: 100%;
        padding: 8px 10px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 13.5px;
        color: #fff;
        outline: none;
    }

        .ttl-pax-class select option {
            background: #0e1d35;
        }

.ttl-pax-done {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 9px;
    background: var(--ttl-accent);
    color: #07111f;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

    .ttl-pax-done:hover {
        background: #e0941a;
    }

/* Search button */
.ttl-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    height: 48px;
    background: linear-gradient(135deg, #f5a623 0%, #e08c10 100%);
    color: #07111f;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(245,166,35,.40);
    transition: transform .2s, box-shadow .2s, background .2s;
    letter-spacing: .01em;
    width: 100%;
}

    .ttl-search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(245,166,35,.50);
        background: linear-gradient(135deg, #ffc04a 0%, #f5a623 100%);
    }

/* Holidays row */
.ttl-holiday-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
}

    .ttl-holiday-search-row .ttl-field-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

/* Visa/Cruise row */
.ttl-visa-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}

/* ============================================================
   TRUSTPILOT STRIP
   ============================================================ */
.ttl-trust-strip {
    background: var(--ttl-white);
    border-top: 1px solid var(--ttl-border);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ttl-text);
    flex-wrap: wrap;
}

    .ttl-trust-strip .ttl-tp-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
    }

.ttl-tp-stars {
    display: flex;
    gap: 3px;
}

.ttl-tp-star {
    width: 22px;
    height: 22px;
    background: #00b67a;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ttl-tp-star svg {
        fill: var(--ttl-white);
    }

.ttl-trust-divider {
    width: 1px;
    height: 24px;
    background: var(--ttl-border);
}

/* ============================================================
   HOLIDAY HERO
   ============================================================ */
.hol-hero, .hol-packages, .hol-trust {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

    .hol-hero *, .hol-packages *, .hol-trust * {
        box-sizing: border-box;
        font-family: inherit;
    }

.hol-hero {
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: 36px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 36px 40px;
}

.hol-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #c4973e;
    margin: 0 0 16px;
}

.hol-hero__headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1.1;
    color: #18243a;
    margin: 0 0 14px;
    letter-spacing: -.02em;
}

    .hol-hero__headline em {
        font-style: italic;
        font-weight: 400;
        color: #c4973e;
    }

.hol-hero__sub {
    font-size: 14px;
    font-weight: 300;
    color: #7a8599;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 0 28px;
}

.hol-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: .28s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    border: none;
    letter-spacing: .01em;
}

.hol-btn--dark {
    background: #18243a;
    color: #fff;
    box-shadow: 0 4px 14px rgba(14,28,47,.22);
}

    .hol-btn--dark:hover {
        background: #122036;
        transform: translateY(-2px);
    }

    .hol-btn--dark svg {
        transition: transform .28s cubic-bezier(.4,0,.2,1);
    }

    .hol-btn--dark:hover svg {
        transform: translateX(3px);
    }

.hol-hero__carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(14,28,47,.16);
}

.hol-hero__slides {
    width: 100%;
    height: 100%;
}

.hol-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .65s ease;
    pointer-events: none;
}

    .hol-hero__slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    .hol-hero__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hol-hero__slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(14,28,47,.58) 0%, transparent 55%);
    }

.hol-hero__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(14,28,47,.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(196,151,62,.2);
    border-radius: 11px;
    padding: 11px 15px;
    color: #fff;
}

    .hol-hero__badge strong {
        display: block;
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 600;
    }

    .hol-hero__badge span {
        font-size: 11.5px;
        font-weight: 300;
        color: rgba(255,255,255,.72);
        margin-top: 1px;
        display: block;
    }

        .hol-hero__badge span b {
            color: #e0b55a;
            font-weight: 600;
        }

.hol-hero__nav {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    gap: 7px;
}

.hol-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18243a;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    transition: .28s cubic-bezier(.4,0,.2,1);
}

    .hol-nav-btn:hover {
        background: #18243a;
        color: #fff;
    }

/* ============================================================
   HOLIDAY PACKAGES
   ============================================================ */
.hol-packages {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px 48px;
}

.hol-packages__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hol-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #18243a;
}

.hol-section-label__bar {
    display: block;
    width: 3px;
    height: 16px;
    background: #c4973e;
    border-radius: 4px;
}

.hol-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #18243a;
    text-decoration: none;
    transition: .28s cubic-bezier(.4,0,.2,1);
}

    .hol-view-all:hover {
        color: #c4973e;
    }

    .hol-view-all svg {
        transition: transform .28s cubic-bezier(.4,0,.2,1);
    }

    .hol-view-all:hover svg {
        transform: translateX(3px);
    }

.hol-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 200px;
    gap: 16px;
    align-items: start;
}

.hol-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2dfd6;
    box-shadow: 0 2px 16px rgba(14,28,47,.08);
    transition: .28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}

    .hol-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 40px rgba(14,28,47,.16);
    }

.hol-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .hol-card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s ease;
    }

.hol-card:hover .hol-card__img-wrap img {
    transform: scale(1.06);
}

.hol-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #18243a;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 3px 9px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    z-index: 1;
}

.hol-card__body {
    padding: 13px 14px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hol-card__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: #18243a;
    margin: 0 0 2px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.hol-card__meta {
    font-size: 11.5px;
    font-weight: 400;
    color: #7a8599;
    margin: 0 0 8px;
}

.hol-card__details {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

    .hol-card__details span {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 11.5px;
        font-weight: 400;
        color: #7a8599;
    }

.hol-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #e2dfd6;
    margin-top: auto;
}

.hol-card__price {
    font-size: 12px;
    font-weight: 300;
    color: #7a8599;
}

    .hol-card__price strong {
        font-family: var(--font-display);
        font-size: 19px;
        font-weight: 500;
        color: #18243a;
        margin-left: 2px;
        letter-spacing: -.01em;
    }

.hol-card__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e2dfd6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18243a;
    text-decoration: none;
    transition: .28s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}

    .hol-card__arrow:hover {
        background: #18243a;
        color: #fff;
        border-color: #18243a;
    }

.hol-card--dark {
    background: #122036;
    border-color: transparent;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
}

    .hol-card--dark:hover {
        box-shadow: 0 14px 40px rgba(14,28,47,.35);
    }

.hol-card__benefits-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c4973e;
    margin-bottom: 12px;
}

.hol-card__benefits-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.22;
    margin: 0 0 18px;
}

.hol-card__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .hol-card__benefits-list li {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 12.5px;
        font-weight: 400;
        color: rgba(255,255,255,.80);
    }

    .hol-card__benefits-list svg {
        color: rgba(255,255,255,.45);
        flex-shrink: 0;
    }

.hol-card__benefits-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #c4973e;
    text-decoration: none;
    margin-top: auto;
    transition: .28s cubic-bezier(.4,0,.2,1);
}

    .hol-card__benefits-link:hover {
        color: #e0b55a;
    }

    .hol-card__benefits-link svg {
        transition: transform .28s cubic-bezier(.4,0,.2,1);
    }

    .hol-card__benefits-link:hover svg {
        transform: translateX(3px);
    }

/* ============================================================
   TRUST BAR
   ============================================================ */
.hol-trust {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 36px 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hol-trust__item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 13px;
    padding: 16px;
    transition: .28s cubic-bezier(.4,0,.2,1);
}

    .hol-trust__item:hover {
        box-shadow: 0 2px 16px rgba(14,28,47,.08);
        transform: translateY(-2px);
    }

.hol-trust__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18243a;
    flex-shrink: 0;
}

.hol-trust__item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #18243a;
    margin-bottom: 1px;
}

.hol-trust__item span {
    font-size: 11.5px;
    font-weight: 300;
    color: #7a8599;
}

/* ============================================================
   RESPONSIVE — HERO + WIDGET
   ============================================================ */

/* 1280px — wide but below full */
@media (max-width: 1280px) {
    .ttl-hero-content {
        padding: 160px 60px 220px;
    }

    .ttl-search-wrap {
        padding: 0 60px 32px;
    }

    .ttl-hero-slide-dots {
        left: 60px;
    }

    .ttl-hero-slide-label {
        right: 60px;
    }
}

/* 1100px — search fields drop to 3 cols */
@media (max-width: 1100px) {
    .ttl-hero-content {
        padding: 150px 48px 290px;
    }

    .ttl-search-wrap {
        padding: 0 48px 30px;
    }

    .ttl-hero-slide-dots {
        left: 48px;
    }

    .ttl-hero-slide-label {
        right: 48px;
        bottom: 195px;
    }

    .ttl-search-fields {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    /* Return + Pax on row 2, button spans all 3 */
    #returnFieldWrap {
        grid-column: 1;
    }

    .ttl-search-fields .ttl-field-group:nth-child(5) {
        grid-column: 2;
    }

    .ttl-search-fields > div:last-child {
        grid-column: 1 / -1;
    }

    .ttl-search-btn {
        height: 44px;
    }

    .hol-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hol-card--dark {
        grid-column: span 2;
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
        padding: 20px 24px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .ttl-hero-content {
        padding: 130px 36px 370px;
    }

    .ttl-search-wrap {
        padding: 0 36px 28px;
    }

    .ttl-hero-slide-dots {
        left: 36px;
        bottom: 370px;
    }

    .ttl-hero-slide-label {
        display: none;
    }

    .ttl-search-tab {
        padding: 12px 14px;
        font-size: 12.5px;
    }

    .ttl-search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
        /* From, To on row 1 | Depart, Return on row 2 | Pax spans | Button spans */
        .ttl-search-fields .ttl-field-group:nth-child(5) {
            grid-column: 1 / -1;
        }

        .ttl-search-fields > div:last-child {
            grid-column: 1 / -1;
        }

    .ttl-flight-options {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 10px;
    }

    .ttl-call-deal {
        width: 100%;
        margin-left: 0;
        font-size: 11.5px;
    }

    .ttl-visa-search-row {
        grid-template-columns: 1fr 1fr;
    }

        .ttl-visa-search-row .ttl-search-btn {
            grid-column: 1 / -1;
        }

    .ttl-holiday-search-row {
        flex-direction: column;
        gap: 8px;
    }

        .ttl-holiday-search-row .ttl-search-btn {
            width: 100%;
        }
}

/* 768px */
@media (max-width: 768px) {
    .ttl-hero-content {
        padding: 110px 24px 390px;
    }

    .ttl-hero-headline {
        font-size: clamp(30px, 7vw, 48px);
    }

    .ttl-hero-sub {
        font-size: 14px;
    }

    .ttl-hero-badges {
        gap: 14px;
    }

    .ttl-badge-icon {
        width: 36px;
        height: 36px;
    }

    .ttl-badge-text strong {
        font-size: 12.5px;
    }

    .ttl-badge-text span {
        font-size: 11px;
    }

    .ttl-search-wrap {
        padding: 0 16px 20px;
    }

    .ttl-search-card {
        border-radius: 16px;
    }

    .ttl-hero-slide-dots {
        left: 16px;
        bottom: 390px;
    }

    .ttl-search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

        .ttl-search-fields > div:last-child {
            grid-column: 1 / -1;
        }

        .ttl-search-fields .ttl-field-group:nth-child(5) {
            grid-column: 1 / -1;
        }

    .ttl-visa-search-row {
        grid-template-columns: 1fr;
    }

    /* Holiday section */
    .hol-hero {
        grid-template-columns: 1fr;
        padding: 36px 20px 28px;
        gap: 28px;
    }

    .hol-packages {
        padding: 0 20px 36px;
    }

    .hol-cards {
        grid-template-columns: 1fr 1fr;
    }

    .hol-card--dark {
        grid-column: span 2;
    }

    .hol-trust {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px 36px;
    }
}

/* 540px */
@media (max-width: 540px) {
    .ttl-hero-content {
        padding: 100px 16px 590px;
    }

    .ttl-hero-headline {
        font-size: clamp(26px, 8vw, 38px);
        line-height: 1.1;
    }

    .ttl-hero-eyebrow {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 16px;
    }

    .ttl-hero-sub {
        font-size: 13.5px;
        margin-bottom: 20px;
    }

    .ttl-hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .ttl-hero-slide-dots {
        left: 14px;
        bottom: 590px;
    }

    .ttl-search-wrap {
        padding: 0 10px 14px;
    }

    .ttl-search-card {
        border-radius: 14px;
    }

    .ttl-search-tabs {
        padding: 0 4px;
    }

    .ttl-search-tab {
        padding: 11px 10px;
        font-size: 12px;
    }

    .ttl-search-panels {
        padding: 12px 14px 14px;
    }

    .ttl-search-fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #returnFieldWrap {
        grid-column: 1;
    }

    .ttl-search-fields .ttl-field-group:nth-child(5) {
        grid-column: 1;
    }

    .ttl-search-fields > div:last-child {
        grid-column: 1;
    }

    .ttl-field-input {
        font-size: 15px;
        padding: 12px 13px;
    }

    .ttl-pax-trigger {
        font-size: 15px;
        padding: 12px 13px;
    }

    .ttl-search-btn {
        height: 50px;
        font-size: 15px;
    }

    .ttl-flight-options {
        gap: 6px;
        margin-bottom: 8px;
    }

    .ttl-radio-group {
        gap: 12px;
    }

    .ttl-radio-group label {
        font-size: 13px;
    }

    .ttl-call-deal {
        font-size: 11px;
    }

    .hol-hero {
        padding: 28px 14px;
    }

    .hol-cards {
        grid-template-columns: 1fr;
    }

    .hol-card--dark {
        grid-column: span 1;
        flex-direction: column;
    }

    .hol-packages {
        padding: 0 14px 28px;
    }

    .hol-trust {
        grid-template-columns: 1fr;
        padding: 0 14px 28px;
    }
}

/* 380px — smallest phones */
@media (max-width: 380px) {
    .ttl-hero-content {
        padding: 95px 14px 560px;
    }

    .ttl-hero-headline {
        font-size: 26px;
    }

    .ttl-search-wrap {
        padding: 0 8px 12px;
    }

    .ttl-search-tab {
        padding: 10px 8px;
        font-size: 11.5px;
        gap: 4px;
    }

        .ttl-search-tab svg {
            display: none;
        }

    .ttl-field-input {
        padding: 11px 12px;
        font-size: 14px;
    }

    .ttl-search-btn {
        height: 48px;
        font-size: 14.5px;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================================
   HOLIDAY COLLECTIONS — paste at bottom of homepage.css
============================================================ */

.hc-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 36px 36px 48px;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

.hc-section * { box-sizing: border-box; }

/* ── Header ──────────────────────────────────────────────── */
.hc-header { text-align: center; margin-bottom: 24px; }

.hc-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}

.hc-eyebrow__line {
    display: block;
    width: 48px;
    height: 1px;
    background: #c4973e;
    opacity: 0.75;
}

.hc-eyebrow__text {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c4973e;
}

.hc-eyebrow__icon {
    display: block;
    font-size: 12px;
    color: #c4973e;
    margin-bottom: 6px;
    opacity: 0.85;
}

.hc-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 500;
    color: #18243a;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
}

.hc-sub {
    font-size: 13.5px;
    font-weight: 400;
    color: #7a8599;
    margin: 0;
}

/* ── Grid — 12 equal columns, 3 fixed-height rows ─────────── */
.hc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 240px 240px 240px;
    gap: 10px;
}

/* Row 1: Honeymoon (6 cols) + Wellness (6 cols) — equal 50/50 */
.hc-card--01 { grid-column: 1 / 7;  grid-row: 1; }
.hc-card--02 { grid-column: 7 / 13; grid-row: 1; }

/* Row 2: Three equal cards (4 cols each) */
.hc-card--03 { grid-column: 1 / 5;  grid-row: 2; }
.hc-card--04 { grid-column: 5 / 9;  grid-row: 2; }
.hc-card--05 { grid-column: 9 / 13; grid-row: 2; }

/* Row 3: Culture (6 cols) + Adventure (6 cols) — equal 50/50 */
.hc-card--06 { grid-column: 1 / 7;  grid-row: 3; }
.hc-card--07 { grid-column: 7 / 13; grid-row: 3; }

/* ── Card base ───────────────────────────────────────────── */
.hc-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background-color: #1a2535;
    transition: box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}

/* Background image on pseudo-element so it zooms independently */
.hc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hc-bg);
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    z-index: 0;
}

/* Dark gradient overlay — heavier bottom-left where text sits */
.hc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(10, 18, 30, 0.15) 0%,
        rgba(10, 18, 30, 0.45) 45%,
        rgba(10, 18, 30, 0.88) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hc-card:hover {
    box-shadow: 0 20px 56px rgba(14,28,47,.32);
}

.hc-card:hover::before {
    transform: scale(1.06);
}

/* ── Card body ───────────────────────────────────────────── */
.hc-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 18px;
    z-index: 2;
}

.hc-card__num {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #c4973e;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    line-height: 1;
}

.hc-card__divider {
    width: 22px;
    height: 2px;
    background: #c4973e;
    border-radius: 2px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hc-card__title {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.7vw, 24px);
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 5px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hc-card__desc {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
    margin: 0;
    max-width: 240px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hc-grid { grid-template-rows: 210px 210px 210px; }
}

@media (max-width: 900px) {
    .hc-section { padding: 40px 20px 48px; }
    .hc-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px 220px 220px;
        gap: 8px;
    }
    .hc-card--01 { grid-column: 1 / 3; grid-row: 1; }
    .hc-card--02 { grid-column: 1 / 3; grid-row: 2; }
    .hc-card--03 { grid-column: 1 / 2; grid-row: 3; }
    .hc-card--04 { grid-column: 2 / 3; grid-row: 3; }
    .hc-card--05 { grid-column: 1 / 3; grid-row: 4; }
    .hc-card--06 { grid-column: 1 / 3; grid-row: 5; }
    .hc-card--07 { grid-column: 1 / 3; grid-row: 6; }
    .hc-grid { grid-template-rows: repeat(6, 200px); }
}

@media (max-width: 600px) {
    .hc-section { padding: 32px 12px 40px; }
    .hc-headline { font-size: clamp(32px, 9vw, 46px); }
    .hc-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 8px;
    }
    .hc-card--01,
    .hc-card--02,
    .hc-card--03,
    .hc-card--04,
    .hc-card--05,
    .hc-card--06,
    .hc-card--07 {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 185px;
    }
}

/* ============================================================
   TOP FLIGHT DEALS — exact reference replica
   Card = full-bleed photo background, text overlaid on top,
   floating white price chip near the bottom.
   Paste at bottom of homepage.css
============================================================ */

.fd-section {
    background: #ffffff;
    padding: 52px 0 56px;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

    .fd-section * {
        box-sizing: border-box;
    }

.fd-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Header ──────────────────────────────────────────────── */
.fd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.fd-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.fd-eyebrow__line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #c4973e;
    border-radius: 2px;
    flex-shrink: 0;
}

.fd-eyebrow__text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c4973e;
}

.fd-headline {
    font-family: var(--font-body);
    font-size:  clamp(28px, 3.2vw, 48px);
    font-weight: 500;
    color: #0f172a;
    margin: 0;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

    .fd-headline em {
        font-style: italic;
        font-weight: 500;
        color: #c4973e;
        font-family: Georgia, 'Times New Roman', serif;
    }

.fd-plane-trail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    top: -2px;
}

    .fd-plane-trail::before {
        content: '';
        display: inline-block;
        width: 44px;
        height: 0;
        border-top: 1.5px dashed #c4973e;
        opacity: .5;
    }

.fd-plane-svg {
    color: #c4973e;
    transform: rotate(-30deg);
    display: block;
}

.fd-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #c4973e;
    text-decoration: none;
    white-space: nowrap;
    transition: gap .2s;
    padding-bottom: 2px;
}

    .fd-view-all:hover {
        gap: 12px;
    }

.fd-view-all__circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #c4973e;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4973e;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, color .2s;
}

.fd-view-all:hover .fd-view-all__circle {
    background: #c4973e;
    border-color: #c4973e;
    color: #fff;
}

/* ── Cards grid ──────────────────────────────────────────── */
.fd-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

/*
   CARD = the photo IS the whole card background.
   - aspect-ratio keeps a portrait card
   - city/country/heart overlaid at top
   - white price chip floats near the bottom (inset margins)
*/
.fd-card {
    position: relative;
    aspect-ratio: 3 / 4; /* portrait card like reference */
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #d8e2f5;
    box-shadow: 0 4px 20px rgba(26,86,219,.12), 0 1px 4px rgba(0,0,0,.06);
    transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow .32s cubic-bezier(.4,0,.2,1);
}

    /* Photo layer */
    .fd-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--fd-img);
        background-size: cover;
        background-position: center;
        transition: transform .55s cubic-bezier(.4,0,.2,1);
        z-index: 0;
    }

    /* Light wash at top so dark text reads, subtle */
    .fd-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,.45) 0%, rgba(255,255,255,.10) 22%, rgba(255,255,255,0) 40%);
        z-index: 1;
        pointer-events: none;
    }

    .fd-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(26,86,219,.20), 0 4px 12px rgba(0,0,0,.10);
    }

        .fd-card:hover::before {
            transform: scale(1.05);
        }

/* Head: city + country + heart, overlaid top */
.fd-card__head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 18px 0;
}

.fd-card__dest {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fd-card__city {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.fd-card__country {
    font-size: 12px;
    font-weight: 400;
    color: #334155;
    line-height: 1;
}

.fd-card__heart {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(15,23,42,.18);
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    flex-shrink: 0;
    padding: 0;
    transition: color .2s, background .2s, border-color .2s;
}

    .fd-card__heart:hover,
    .fd-card__heart.active {
        color: #e53e3e;
        border-color: #fca5a5;
        background: #fff1f2;
    }

        .fd-card__heart.active svg {
            fill: #e53e3e;
            stroke: #e53e3e;
        }

/* Floating white price chip near bottom */
.fd-card__chip {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px 12px 12px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.fd-card__price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fd-card__from {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.3;
}

.fd-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fd-card__price {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1;
}

.fd-card__type {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}

.fd-card__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background .2s, border-color .2s, color .2s;
}

.fd-card:hover .fd-card__arrow {
    background: #c4973e;
    border-color: #c4973e;
    color: #fff;
}

/* ── Trending strip ──────────────────────────────────────── */
.fd-trending {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

    .fd-trending::-webkit-scrollbar {
        display: none;
    }

.fd-trending__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    flex-shrink: 0;
}

    .fd-trending__label svg {
        color: #c4973e;
    }

.fd-trending__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: background .2s, border-color .2s, color .2s;
}

    .fd-trending__item svg {
        color: #c4973e;
        flex-shrink: 0;
    }

    .fd-trending__item:hover {
        background: #c4973e;
        border-color: #c4973e;
        color: #fff;
    }

        .fd-trending__item:hover svg {
            color: #fff;
        }

.fd-trending__chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: auto;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: background .2s, color .2s, border-color .2s;
}

    .fd-trending__chevron:hover {
        background: #c4973e;
        border-color: #c4973e;
        color: #fff;
    }

/* ── Signup banner ───────────────────────────────────────── */
.fd-signup {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f8fafc;
    border: 1.5px solid #e8edf5;
    border-radius: 18px;
    padding: 22px 28px;
}

.fd-signup__hex {
    width: 54px;
    height: 54px;
    background: #c4973e;
    border-radius: 14px;
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fd-signup__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    min-width: 190px;
}

    .fd-signup__text strong {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
    }

    .fd-signup__text span {
        font-size: 12px;
        color: #64748b;
        line-height: 1.5;
    }

.fd-signup__input {
    flex: 1;
    height: 46px;
    padding: 0 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #0f172a;
    background: #fff;
    outline: none;
    min-width: 0;
    transition: border-color .2s, box-shadow .2s;
}

    .fd-signup__input::placeholder {
        color: #94a3b8;
    }

    .fd-signup__input:focus {
        border-color: #c4973e;
        box-shadow: 0 0 0 3px rgba(26,86,219,.10);
    }

.fd-signup__btn {
    height: 46px;
    padding: 0 26px;
    background: #c4973e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .18s;
}

    .fd-signup__btn:hover {
        background: #1447b2;
        transform: translateY(-1px);
    }

.fd-signup__social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    min-width: 170px;
}

    .fd-signup__social p {
        font-size: 12px;
        color: #64748b;
        margin: 0;
        line-height: 1.5;
    }

.fd-signup__avatars {
    display: flex;
    align-items: center;
}

.fd-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid #f8fafc;
    object-fit: cover;
    margin-left: -8px;
    flex-shrink: 0;
}

    .fd-avatar:first-child {
        margin-left: 0;
    }

.fd-avatar--count {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c4973e;
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid #f8fafc;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1140px) {
    .fd-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .fd-card:nth-child(4),
    .fd-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 860px) {
    .fd-wrap {
        padding: 0 20px;
    }

    .fd-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .fd-card:nth-child(4) {
        display: block;
    }

    .fd-card:nth-child(5) {
        display: none;
    }

    .fd-signup {
        flex-wrap: wrap;
    }

    .fd-signup__input {
        flex: 1 1 100%;
        order: 3;
    }
}

@media (max-width: 600px) {
    .fd-section {
        padding: 30px 0 36px;
    }

    .fd-wrap {
        padding: 0 14px;
    }

    .fd-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .fd-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .fd-card:nth-child(n+4) {
        display: none;
    }

    .fd-trending {
        display: none;
    }

    .fd-signup {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .fd-signup__input, .fd-signup__btn {
        width: 100%;
    }
}

/* ============================================================
   CRUISE EXPERIENCES SECTION
   Paste at bottom of homepage.css
============================================================ */

.cr-section {
    background: #f4f6fa;
    padding: 40px 0;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

    .cr-section * {
        box-sizing: border-box;
    }

/* White rounded panel */
.cr-panel {
    max-width: 1500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(15,23,42,.06);
    padding: 36px 36px 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ── LEFT intro ──────────────────────────────────────────── */
.cr-intro {
    display: flex;
    flex-direction: column;
    padding-top: 18px;
}

.cr-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.cr-eyebrow__icon {
    color: #c4973e;
    flex-shrink: 0;
}

.cr-eyebrow span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c4973e;
}

.cr-headline {
    font-family: var(--font-display);
    font-size:  clamp(28px, 3.2vw, 48px);
    font-weight: 500;
    color: #0f172a;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}

    .cr-headline em {
        font-style: italic;
        font-weight: 500;
        color: #c4973e;
    }

.cr-sub {
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 30px;
}

.cr-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    padding: 11px 14px 11px 22px;
    border: 1.5px solid #d6e0f5;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    color: #c4973e;
    text-decoration: none;
    background: #fff;
    transition: background .25s, border-color .25s, transform .25s;
}

    .cr-btn:hover {
        background: #f0f4ff;
        border-color: #c4973e;
        transform: translateY(-2px);
    }

.cr-btn__circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c4973e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s;
}

.cr-btn:hover .cr-btn__circle {
    transform: translateX(3px);
}

/* ── RIGHT cards ─────────────────────────────────────────── */
.cr-cards {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr;
    gap: 16px;
}

/* Card = full-bleed photo, portrait */
.cr-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 510px;
    display: block;
    text-decoration: none;
    background: #1a2535;
    box-shadow: 0 8px 28px rgba(15,23,42,.16);
    transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow .32s cubic-bezier(.4,0,.2,1);
}

    .cr-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--cr-img);
        background-size: cover;
        background-position: center;
        transition: transform .6s cubic-bezier(.4,0,.2,1);
        z-index: 0;
    }

    /* Dark gradient bottom for text legibility */
    .cr-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8,15,28,.92) 0%, rgba(8,15,28,.55) 32%, rgba(8,15,28,.05) 58%, rgba(8,15,28,0) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .cr-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 48px rgba(15,23,42,.28);
    }

        .cr-card:hover::before {
            transform: scale(1.05);
        }

/* Top row: badge + heart */
.cr-card__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
}

.cr-card__top--right {
    justify-content: flex-end;
}

.cr-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #b8860b;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

    .cr-card__badge svg {
        color: #f5a623;
    }

.cr-card__heart {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    padding: 0;
    transition: color .2s, background .2s, border-color .2s;
}

    .cr-card__heart:hover,
    .cr-card__heart.active {
        color: #ff5a5a;
        border-color: #ff5a5a;
        background: rgba(255,255,255,.25);
    }

        .cr-card__heart.active svg {
            fill: #ff5a5a;
            stroke: #ff5a5a;
        }

/* Bottom body */
.cr-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 22px;
}

.cr-card__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.cr-card__meta {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.82);
    margin: 0 0 16px;
    line-height: 1.4;
}

/* Narrow cards stack nights above location */
.cr-card__meta--stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cr-card__nights {
    font-weight: 600;
    color: #fff;
}

.cr-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cr-card__price {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
}

    .cr-card__price strong {
        font-size: 17px;
        font-weight: 800;
        color: #fff;
    }

    .cr-card__price span {
        color: rgba(255,255,255,.65);
        font-size: 12.5px;
    }

.cr-card__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    transition: background .2s, color .2s, transform .2s;
}

.cr-card:hover .cr-card__arrow {
    background: #c4973e;
    color: #fff;
    transform: translateX(2px);
}

/* The featured card's title is bigger */
.cr-card--featured .cr-card__title {
    font-size: 30px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cr-panel {
        grid-template-columns: 260px 1fr;
        gap: 28px;
    }

    .cr-cards {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .cr-card:nth-child(4) {
        display: none;
    }

    .cr-card {
        min-height: 440px;
    }
}

@media (max-width: 900px) {
    .cr-panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px 32px;
    }

    .cr-intro {
        padding-top: 0;
    }

    .cr-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cr-card:nth-child(4) {
        display: block;
    }

    .cr-card {
        min-height: 400px;
    }

    .cr-card--featured {
        grid-column: 1 / -1;
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .cr-section {
        padding: 24px 0;
    }

    .cr-panel {
        border-radius: 20px;
        padding: 22px 16px 26px;
    }

    .cr-cards {
        grid-template-columns: 1fr;
    }

    .cr-card,
    .cr-card--featured {
        grid-column: 1;
        min-height: 380px;
    }

    .cr-headline {
        font-size: clamp(32px, 9vw, 44px);
    }
}