/* ════════════════════════════════════════════════════════════════
   INDEX.CSS — Homepage Premium New Sections
   Prefix: hm- (homepage)
   ════════════════════════════════════════════════════════════════ */

/* ─── Performance: GPU compositing hints ─────────────────────── */
.hero-video,
.hm-ep-bg img,
.hm-layer-bg img,
.hm-spot-img-layer img,
.gp-earth-video {
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hm-dc,
.hm-layer,
.dj-plane {
    will-change: transform, opacity;
}

/* Smooth image transitions across the site */
img {
    image-rendering: auto;
}

/* ─────────────────────────────────────────────
   §3  HM-EXP — Luxury Travel Experiences
   Animation: Expanding Accordion Panels
   ───────────────────────────────────────────── */

.hm-exp {
    background: #07142e;
    padding-top: 80px;
    overflow: hidden;
}

.hm-exp-header {
    text-align: center;
    padding-bottom: 60px;
}
.hm-exp-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(74,169,255,0.75);
    margin-bottom: 18px;
}
.hm-exp-eye-line {
    display: block; width: 36px; height: 1px;
    background: rgba(74,169,255,0.35);
}
.hm-exp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 700; color: #ffffff; line-height: 1.06; margin: 0 0 16px;
}
.hm-exp-title em { font-style: italic; color: #6EC1FF; }
.hm-exp-sub {
    font-size: 0.92rem; color: rgba(255,255,255,0.42);
    max-width: 480px; margin: 0 auto;
}

/* ── Panels row ── */
.hm-exp-panels {
    display: flex;
    height: 580px;
    gap: 0;
}

.hm-exp-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.70s cubic-bezier(0.77,0,0.175,1);
}
.hm-exp-panel.is-active {
    flex: 3.4;
}

/* Image background */
.hm-ep-bg {
    position: absolute; inset: 0;
    transition: transform 0.70s cubic-bezier(0.77,0,0.175,1);
}
.hm-ep-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.hm-exp-panel.is-active .hm-ep-bg { transform: scale(1.0); }
.hm-exp-panel:not(.is-active) .hm-ep-bg { transform: scale(1.06); }

.hm-ep-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,10,36,0.90) 0%, rgba(4,10,36,0.50) 45%, rgba(4,10,36,0.25) 100%);
    transition: background 0.55s ease;
}
.hm-exp-panel.is-active .hm-ep-overlay {
    background: linear-gradient(to top, rgba(4,10,36,0.88) 0%, rgba(4,10,36,0.45) 40%, rgba(4,10,36,0.15) 100%);
}

/* Content — only visible in active panel */
.hm-ep-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 44px 44px 44px 44px;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.hm-exp-panel:not(.is-active) .hm-ep-content {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
}

.hm-ep-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 700;
    color: rgba(255,255,255,0.08);
    line-height: 1; display: block;
    margin-bottom: 10px; user-select: none;
}
.hm-ep-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #6EC1FF; margin-bottom: 12px;
}
.hm-ep-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 700; color: #ffffff;
    line-height: 1.14; margin: 0 0 14px;
}
.hm-ep-desc {
    font-size: 0.85rem; line-height: 1.70;
    color: rgba(255,255,255,0.60);
    margin: 0 0 22px; max-width: 340px;
}
.hm-ep-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 26px;
    background: rgba(74,169,255,0.16);
    border: 1px solid rgba(74,169,255,0.30);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: #6EC1FF; text-decoration: none;
    transition: background 0.30s ease, border-color 0.30s ease, color 0.30s ease;
}
.hm-ep-btn:hover {
    background: #4AA9FF; border-color: #4AA9FF; color: #07142e;
}

/* Vertical label for collapsed panels */
.hm-ep-side-label {
    position: absolute; bottom: 50%; left: 50%;
    transform: translateX(-50%) translateY(50%) rotate(-90deg);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.hm-exp-panel.is-active .hm-ep-side-label { opacity: 0; }

/* Separator border between panels */
.hm-exp-panel + .hm-exp-panel::before {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 0;
    width: 1px;
    background: rgba(255,255,255,0.07);
    z-index: 5;
}


/* ─────────────────────────────────────────────
   §5  RV-SVC — Our Services Grid
   ───────────────────────────────────────────── */

/* Section */
.rv-svc {
    background: #EEF7FF;
    padding: 100px 0 90px;
    overflow: hidden;
    position: relative;
}
.rv-svc-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(11,94,215,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(74,169,255,0.05) 0%, transparent 55%);
    pointer-events: none;
}

/* Header */
.rv-svc-header {
    text-align: center;
    margin-bottom: 56px;
}
.rv-svc-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0B5ED7; margin-bottom: 14px;
}
.rv-svc-eye-line {
    display: block; width: 30px; height: 1px;
    background: rgba(11,94,215,0.30);
}
.rv-svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 700; color: #10253F; line-height: 1.06; margin: 0 0 12px;
}
.rv-svc-title em { font-style: italic; color: #0B5ED7; }
.rv-svc-sub { font-size: 0.88rem; color: #5A7A9A; }

/* Grid */
.rv-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.rv-svc-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(10,22,60,0.08), 0 1px 4px rgba(10,22,60,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    position: relative;
    cursor: pointer;
}
a.rv-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(10,22,60,0.14), 0 4px 12px rgba(10,22,60,0.08);
}
a.rv-svc-card:hover .rv-svc-card-overlay {
    opacity: 0.55;
}
a.rv-svc-card:hover .rv-svc-card-img img {
    transform: scale(1.07);
}
a.rv-svc-card:hover .rv-svc-card-cta {
    gap: 10px;
    color: #0B5ED7;
}
a.rv-svc-card:hover .rv-svc-card-cta svg {
    transform: translateX(4px);
}

/* Card image */
.rv-svc-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.rv-svc-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.rv-svc-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,22,60,0.32) 100%);
    opacity: 0.35;
    transition: opacity 0.35s ease;
}

/* Card body */
.rv-svc-card-body {
    padding: 20px 22px 22px;
}
.rv-svc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: #10253F; margin: 0 0 7px; line-height: 1.2;
}
.rv-svc-card-desc {
    font-size: 0.82rem; color: #5A7A9A;
    line-height: 1.6; margin: 0 0 14px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.rv-svc-card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: #8BACC8;
    transition: color 0.25s ease, gap 0.25s ease;
}
.rv-svc-card-cta svg {
    transition: transform 0.25s ease;
}

/* Responsive */
@media (max-width: 900px) {
    .rv-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
    .rv-svc-grid { grid-template-columns: 1fr; gap: 16px; }
    .rv-svc { padding: 70px 0 60px; }
}

/* ─────────────────────────────────────────────
   §5-OLD  HM-DISC — kept for reference (hidden)
   ───────────────────────────────────────────── */

.hm-disc {
    background: #EEF7FF;
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.hm-disc-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11,94,215,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(74,169,255,0.05) 0%, transparent 55%);
    pointer-events: none;
}

.hm-disc-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative; z-index: 1;
}
.hm-disc-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0B5ED7; margin-bottom: 14px;
}
.hm-disc-eye-line {
    display: block; width: 30px; height: 1px;
    background: rgba(11,94,215,0.30);
}
.hm-disc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 700; color: #10253F; line-height: 1.06; margin: 0 0 12px;
}
.hm-disc-title em { font-style: italic; color: #0B5ED7; }
.hm-disc-sub {
    font-size: 0.88rem; color: #5A7A9A;
}

/* ── 3D Stage ── */
.hm-disc-stage {
    position: relative;
    height: 560px;
    perspective: 1200px;
    display: flex; align-items: center; justify-content: center;
}

.hm-disc-scene {
    position: relative;
    width: 420px; height: 520px;
    transform-style: preserve-3d;
}

/* Each destination card */
.hm-dc {
    position: absolute; inset: 0;
    border-radius: 28px;
    overflow: hidden;
    backface-visibility: hidden;
    will-change: transform;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 8px 24px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: none; /* JS drives all transitions */
}

.hm-dc-img-wrap {
    position: absolute; inset: 0;
}
.hm-dc-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hm-dc.is-active .hm-dc-img-wrap img { transform: scale(1.04); }
/* Glass bottom overlay */
.hm-dc-glass {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(4,10,36,0.92) 0%, rgba(4,10,36,0.50) 60%, transparent 100%);
    padding: 28px 28px 24px;
    transform: translateY(0);
    transition: transform 0.45s ease, opacity 0.45s ease;
    pointer-events: none;
}
.hm-dc[data-href] { cursor: pointer; }

/* Card wrapper for layout */
.hm-dc-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Preview button below card */
.hm-dc-preview-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(11,94,215,0.18) 0%, rgba(74,169,255,0.12) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11,94,215,0.35);
    border-radius: 100px;
    padding: 11px 22px 11px 18px;
    color: #0B5ED7;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}
.hm-dc.is-active ~ .hm-dc-preview-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hm-dc-preview-btn:hover {
    background: linear-gradient(135deg, rgba(11,94,215,0.28) 0%, rgba(74,169,255,0.22) 100%);
    border-color: rgba(11,94,215,0.6);
    color: #0845a8;
    transform: translateY(0) scale(1.05);
}
.hm-dc-preview-btn svg {
    width: 15px; height: 15px;
    transition: transform 0.25s ease;
}
.hm-dc-preview-btn:hover svg {
    transform: translateX(4px);
}

.hm-dc-flag {
    font-size: 1.6rem; display: block; margin-bottom: 8px;
}
.hm-dc-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700;
    color: #ffffff; margin: 0 0 6px;
}
.hm-dc-info p {
    font-size: 0.80rem; line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px; max-width: 300px;
}
.hm-dc-meta {
    display: flex; align-items: center; justify-content: space-between;
}
.hm-dc-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 500;
    color: rgba(255,255,255,0.50);
}
.hm-dc-price strong { color: #ffffff; font-weight: 700; }
.hm-dc-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.08em;
    color: #6EC1FF; text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(110,193,255,0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}
.hm-dc-link:hover { color: #ffffff; border-color: rgba(255,255,255,0.40); }

/* Non-active cards hide glass info */
.hm-dc:not(.is-active) .hm-dc-glass {
    opacity: 0;
    transform: translateY(10px);
}

/* Carousel Controls */
.hm-disc-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(11,94,215,0.12);
    color: #10253F;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(11,94,215,0.12);
    transition: background 0.30s ease, transform 0.30s ease, box-shadow 0.30s ease;
}
.hm-disc-btn:hover {
    background: #0B5ED7; color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 36px rgba(11,94,215,0.30);
}
.hm-disc-btn--prev { left: calc(50% - 280px); }
.hm-disc-btn--next { right: calc(50% - 280px); }

/* Explore CTA button — outside 3D scene for reliable clicks */
.hm-disc-cta-wrap {
    text-align: center;
    margin-top: 32px;
    position: relative;
    z-index: 10;
}
.hm-disc-explore-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #0B5ED7 0%, #1A6FE8 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(11,94,215,0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.hm-disc-explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(11,94,215,0.44);
}
.hm-disc-explore-btn svg { transition: transform 0.25s ease; }
.hm-disc-explore-btn:hover svg { transform: translateX(4px); }
.hm-disc-explore-btn[href="#"] { opacity: 0.4; pointer-events: none; }

/* Progress pips */
.hm-disc-pips {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hm-disc-pip {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; cursor: pointer; padding: 0;
    background: rgba(11,94,215,0.20);
    transition: background 0.30s ease, transform 0.30s ease;
}
.hm-disc-pip.is-active {
    background: #0B5ED7;
    transform: scale(1.35);
}


/* ─────────────────────────────────────────────
   §7  HM-LAYERS — Journey Layers Experience
   Animation: GSAP-pinned stacking full-screen panels
   ───────────────────────────────────────────── */

.hm-layers {
    position: relative;
}

.hm-layers-pin {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Each layer: full-screen, stacked via position absolute */
.hm-layer {
    position: absolute;
    inset: 0;
    display: flex; align-items: center;
    will-change: transform;
    overflow: hidden;
}

/* Image background */
.hm-layer-bg {
    position: absolute; inset: 0;
    will-change: transform;
}
.hm-layer-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Overlays — different mood per layer */
.hm-layer-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(4,10,36,0.78) 0%, rgba(4,10,36,0.55) 55%, rgba(4,10,36,0.70) 100%);
}
.hm-layer-overlay--warm {
    background: linear-gradient(160deg, rgba(14,4,36,0.80) 0%, rgba(54,8,36,0.50) 55%, rgba(4,10,36,0.72) 100%);
}
.hm-layer-overlay--deep {
    background: linear-gradient(160deg, rgba(2,20,18,0.82) 0%, rgba(4,36,30,0.58) 55%, rgba(4,10,36,0.72) 100%);
}
.hm-layer-overlay--gold {
    background: linear-gradient(160deg, rgba(20,14,4,0.84) 0%, rgba(36,26,4,0.60) 55%, rgba(4,10,36,0.76) 100%);
}

/* Inner layout */
.hm-layer-inner {
    position: relative; z-index: 3;
    width: 100%;
}

.hm-layer-content {
    max-width: 560px;
}
.hm-layer-content--right {
    margin-left: auto;
}
.hm-layer-content--center {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hm-layer-chapter {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: rgba(212,175,55,0.80);
    margin-bottom: 18px;
}
.hm-layer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 700; color: #ffffff;
    line-height: 1.04; margin: 0 0 22px;
}
.hm-layer-title em { font-style: italic; color: rgba(255,255,255,0.85); }
.hm-layer-title--large { font-size: clamp(54px, 7.5vw, 108px); }

.hm-layer-text {
    font-size: 0.95rem; line-height: 1.82;
    color: rgba(255,255,255,0.58);
    max-width: 420px; margin: 0 0 28px;
}
.hm-layer-content--center .hm-layer-text { margin: 0 auto 28px; }

.hm-layer-rule {
    width: 60px; height: 2px;
    background: linear-gradient(to right, #D4AF37, transparent);
    margin-bottom: 24px;
}
.hm-layer-content--center .hm-layer-rule {
    margin: 0 auto 24px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.hm-layer-cue {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}
.hm-layer-dests {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.hm-layer-dests span {
    padding: 5px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 500;
    color: rgba(255,255,255,0.60);
}

.hm-layer-badges {
    display: flex; gap: 20px;
}
.hm-layer-badge {
    text-align: center;
    padding: 14px 22px;
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.20);
    border-radius: 14px;
    display: flex; flex-direction: column; gap: 3px;
}
.hm-layer-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700; color: #ffffff; line-height: 1;
}
.hm-layer-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 600;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.40);
}

.hm-layer-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: #07142e; text-decoration: none;
    box-shadow: 0 12px 40px rgba(212,175,55,0.38);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.hm-layer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.54);
}

/* Ghost layer numbers — huge background text */
.hm-layer-ghost-num {
    position: absolute;
    bottom: -60px; right: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(200px, 30vw, 380px);
    font-weight: 700; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.04);
    pointer-events: none; user-select: none;
    z-index: 2;
}

/* Scroll progress sidebar */
.hm-layers-prog {
    position: fixed;
    right: 32px; top: 50%; transform: translateY(-50%);
    z-index: 100;
    display: none; /* shown by JS when pinned section is active */
    flex-direction: column;
    align-items: center; gap: 10px;
}
.hm-layers-prog.is-visible { display: flex; }
.hm-lp-track {
    width: 2px; height: 120px;
    background: rgba(255,255,255,0.10);
    border-radius: 2px; overflow: hidden;
}
.hm-lp-fill {
    width: 100%; height: 0%;
    background: #D4AF37;
    transition: height 0.05s linear;
}
.hm-lp-labels {
    display: flex; flex-direction: column; gap: 8px;
}
.hm-lp-labels span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.50rem; font-weight: 700;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.30);
}


/* ─────────────────────────────────────────────
   §8  HM-SPOT — Trending Destinations Spotlight
   Animation: Auto-changing cinematic editorial showcase
   ───────────────────────────────────────────── */

.hm-spot {
    background: #050e23;
    position: relative;
    overflow: hidden;
}
.hm-spot-wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 62vh;
}

/* ── LEFT SIDE ── */
.hm-spot-left {
    background: linear-gradient(140deg, #07142e 0%, #0a1c44 60%, #06112a 100%);
    padding: 72px 64px 72px 72px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 2;
    overflow: hidden;
}
.hm-spot-left::after {
    content: '';
    position: absolute; inset: 0; right: -1px;
    background: linear-gradient(90deg, transparent 85%, rgba(5,14,35,0.60) 100%);
    pointer-events: none;
}

/* Eyebrow */
.hm-spot-eyebrow-wrap { margin-bottom: 36px; }
.hm-spot-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(212,175,55,0.70);
}
.hm-spot-eye-line {
    display: block; width: 32px; height: 1px;
    background: rgba(212,175,55,0.35);
}

/* Counter */
.hm-spot-counter {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.hm-spot-curr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.70rem; font-weight: 700;
    color: #0B1A3B; line-height: 1;
}
.hm-spot-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0rem; font-weight: 400;
    color: rgba(255,255,255,0.25); line-height: 1;
}
.hm-spot-ctr-track-wrap { flex: 1; }
.hm-spot-ctr-track {
    height: 1px;
    background: rgba(255,255,255,0.10);
    border-radius: 2px;
    overflow: hidden;
}
.hm-spot-ctr-fill {
    height: 100%; width: 100%;
    background: linear-gradient(90deg, #0B5ED7, #4a90e2);
    transform-origin: left center;
    transform: scaleX(0);
    border-radius: 2px;
}

/* Origin */
.hm-spot-origin {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px; opacity: 0;
}
.hm-spot-flag {
    font-size: 1.35rem; line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.hm-spot-country {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* Destination Name */
.hm-spot-name-wrap {
    overflow: hidden;
    margin-bottom: 24px;
}
.hm-spot-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 700; line-height: 0.92;
    color: #ffffff; margin: 0;
    letter-spacing: -0.02em;
    opacity: 0;
}

/* Description */
.hm-spot-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.90rem; line-height: 1.78;
    color: rgba(255,255,255,0.50);
    margin: 0 0 32px;
    max-width: 400px;
    opacity: 0;
}

/* Highlights */
.hm-spot-hls {
    display: flex; flex-direction: column; gap: 11px;
    margin-bottom: 40px;
}
.hm-spot-hl {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.68);
    opacity: 0; transform: translateX(-12px);
}
.hm-hl-dot {
    width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: #D4AF37;
    box-shadow: 0 0 8px rgba(212,175,55,0.45);
}

/* Footer */
.hm-spot-footer {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 48px;
    opacity: 0;
}
.hm-spot-price-info {
    display: flex; flex-direction: column; gap: 3px;
}
.hm-spot-duration {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 600;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: rgba(255,255,255,0.30);
}
.hm-spot-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: rgba(255,255,255,0.55);
}
.hm-spot-price strong {
    color: #0B1A3B; font-size: 1.30rem;
}
.hm-spot-cta {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px;
    background: #0B5ED7;
    color: White;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; border-radius: 100px;
    transition: opacity 0.30s, transform 0.30s;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(212,175,55,0.28);
}
.hm-spot-cta:hover { opacity: 0.88; transform: translateY(-2px); }
.hm-spot-cta svg { transition: transform 0.25s; }
.hm-spot-cta:hover svg { transform: translateX(4px); }

/* Thumbnail strip */
.hm-spot-thumbs {
    display: flex; gap: 10px;
}
.hm-spot-thumb {
    width: 56px; height: 40px;
    border-radius: 7px; overflow: hidden;
    border: 2px solid rgba(255,255,255,0.10);
    cursor: pointer;
    transition: border-color 0.30s, transform 0.25s, opacity 0.30s;
    opacity: 0.45; flex-shrink: 0;
}
.hm-spot-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    pointer-events: none;
}
.hm-spot-thumb.is-active {
    border-color: #D4AF37;
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212,175,55,0.30);
}
.hm-spot-thumb:hover:not(.is-active) {
    opacity: 0.72; transform: translateY(-2px);
    border-color: rgba(255,255,255,0.25);
}

/* ── RIGHT SIDE ── */
.hm-spot-right {
    position: relative; overflow: hidden;
    background: #EEF7FF;
}

/* Progress bar */
.hm-spot-prog {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; z-index: 10; background: rgba(255,255,255,0.07);
}
.hm-spot-prog-fill {
    height: 100%; width: 100%;
    background: linear-gradient(90deg, #D4AF37, #F5D57C);
    transform-origin: left center;
    transform: scaleX(0);
    border-radius: 0 2px 2px 0;
}

/* Image layers (two for crossfade) */
.hm-spot-img-stage {
    position: absolute; inset: 0;
}
.hm-spot-img-layer {
    position: absolute; inset: 0; overflow: hidden;
}
.hm-spot-img-layer img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    will-change: transform, opacity;
}
.hm-spot-img-layer--b {
    opacity: 0; z-index: 1;
}

/* Overlay gradient */
.hm-spot-img-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: transparent;
}

/* Glass badge */
.hm-spot-img-badge {
    position: absolute; bottom: 36px; left: 36px;
    z-index: 5;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 16px; padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.30);
    opacity: 0;
}
.hm-sib-inner { display: flex; align-items: center; gap: 12px; }
.hm-sib-flag { font-size: 1.25rem; line-height: 1; }
.hm-sib-text {
    display: flex; flex-direction: column; gap: 1px;
}
.hm-sib-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.90);
}
.hm-sib-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 500;
    color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}

/* Animated SVG route decoration */
.hm-spot-route-svg {
    position: absolute; bottom: 0; right: 0;
    width: 260px; height: 260px;
    z-index: 3; pointer-events: none;
    opacity: 0.55;
}

/* Corner accent lines */
.hm-spot-corner {
    position: absolute; width: 36px; height: 36px;
    z-index: 6; pointer-events: none;
}
.hm-spot-corner--tl {
    top: 22px; right: 22px;
    border-top: 1.5px solid rgba(212,175,55,0.40);
    border-right: 1.5px solid rgba(212,175,55,0.40);
}
.hm-spot-corner--br {
    bottom: 22px; right: 22px;
    border-bottom: 1.5px solid rgba(212,175,55,0.40);
    border-right: 1.5px solid rgba(212,175,55,0.40);
}

/* Pause button */
.hm-spot-pause-btn {
    position: absolute; top: 24px; right: 24px; z-index: 8;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.25s, color 0.25s;
}
.hm-spot-pause-btn:hover {
    background: rgba(11,94,215,0.10);
    color: #0B5ED7;
    border-color: rgba(11,94,215,0.25);
}

/* Responsive */
@media (max-width: 1024px) {
    .hm-spot-wrap { grid-template-columns: 1fr; min-height: auto; }
    .hm-spot-left { padding: 64px 36px; }
    .hm-spot-right { min-height: 55vw; }
}
@media (max-width: 640px) {
    .hm-spot-left { padding: 48px 24px 40px; }
    .hm-spot-name { font-size: clamp(42px, 11vw, 64px); }
    .hm-spot-right { min-height: 72vw; }
    .hm-spot-img-badge { left: 20px; bottom: 20px; }
    .hm-spot-thumbs { gap: 7px; }
    .hm-spot-thumb { width: 44px; height: 32px; }
}


/* ─────────────────────────────────────────────
   §10  HM-WORLD — Interactive World Journey
   Animation: Earth + animated SVG routes + destination nodes
   ───────────────────────────────────────────── */

.hm-world {
    background: linear-gradient(120deg, #04081a 0%, #07142e 50%, #040c22 100%);
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
}
.hm-world-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.28) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 72%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 64% 25%, rgba(255,255,255,0.22) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.16) 0%, transparent 100%),
        radial-gradient(1px 1px at 91% 42%, rgba(255,255,255,0.24) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 90%, rgba(255,255,255,0.20) 0%, transparent 100%);
    pointer-events: none;
}

.hm-world-header {
    text-align: center;
    position: relative; z-index: 2;
    margin-bottom: 60px;
}
.hm-world-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(74,169,255,0.65);
    margin-bottom: 18px;
}
.hm-world-ey-line {
    display: block; width: 36px; height: 1px;
    background: rgba(74,169,255,0.28);
}
.hm-world-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700; color: #ffffff; line-height: 1.06; margin: 0 0 16px;
}
.hm-world-title em { font-style: italic; color: #6EC1FF; }
.hm-world-sub {
    font-size: 0.92rem; color: rgba(255,255,255,0.38);
    max-width: 480px; margin: 0 auto;
}

/* ── Globe stage ── */
.hm-world-stage {
    position: relative;
    height: 600px;
    display: flex; align-items: center; justify-content: center;
}

/* SVG routes overlay */
.hm-world-routes {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 1;
}
.hm-route {
    transition: stroke-opacity 0.40s ease;
}

/* Earth */
.hm-world-earth-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.hm-world-earth-halo {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%; pointer-events: none;
    transform: translate(-50%, -50%);
}
.hm-world-earth-halo--1 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(74,169,255,0.12) 0%, transparent 65%);
}
.hm-world-earth-halo--2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(74,169,255,0.05) 0%, transparent 65%);
}
.hm-world-earth-sphere {
    width: 240px; height: 240px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow:
        0 0 0 1px rgba(74,169,255,0.30),
        0 0 0 16px rgba(74,169,255,0.05),
        0 30px 90px rgba(74,169,255,0.22),
        0 10px 40px rgba(0,0,0,0.30);
    animation: hmWorldEarthFloat 7s ease-in-out infinite;
}
@keyframes hmWorldEarthFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-14px) scale(1.012); }
}
.hm-world-earth-vid {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Destination nodes */
.hm-world-node {
    position: absolute;
    left: var(--nx); top: var(--ny);
    transform: translate(-50%, -50%);
    z-index: 4; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hm-wn-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #4AA9FF;
    box-shadow: 0 0 0 3px rgba(74,169,255,0.20);
    position: relative; z-index: 2;
}
.hm-wn-pulse {
    position: absolute;
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(74,169,255,0.40);
    animation: hmWnPulse 2.6s ease-in-out infinite;
    z-index: 1;
}
@keyframes hmWnPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.5); opacity: 0; }
}
.hm-wn-label {
    display: flex; align-items: center; gap: 5px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.30s ease, transform 0.30s ease;
    pointer-events: none;
}
.hm-world-node:hover .hm-wn-label {
    opacity: 1; transform: translateY(0);
}
.hm-wn-flag { font-size: 0.80rem; }
.hm-wn-label strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 700;
    color: rgba(255,255,255,0.80);
}

/* Floating info cards */
.hm-world-info-card {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    z-index: 5; will-change: transform;
}
#hmWic1 { top: 8%;  left: 6%; }
#hmWic2 { bottom: 12%; left: 8%; }
#hmWic3 { top: 15%; right: 5%; }

.hm-wic-pulse-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4AA9FF; flex-shrink: 0;
    animation: hmWicPulse 2.4s ease-in-out infinite;
    box-shadow: 0 0 0 3px rgba(74,169,255,0.16);
}
@keyframes hmWicPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,169,255,0.16); }
    50%       { box-shadow: 0 0 0 7px rgba(74,169,255,0.05); }
}
.hm-wic-body { display: flex; flex-direction: column; gap: 2px; }
.hm-wic-body strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    color: rgba(255,255,255,0.88);
}
.hm-wic-body span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 500;
    color: #6EC1FF;
}

/* Bottom stats strip */
.hm-world-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; padding: 52px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.hm-ws-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 5px;
}
.hm-ws-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem; font-weight: 700;
    color: #ffffff; line-height: 1;
}
.hm-ws-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}
.hm-ws-sep {
    font-size: 0.55rem; color: rgba(74,169,255,0.28);
}


/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Expanding panels: stack vertically on tablet */
    .hm-exp-panels {
        flex-direction: column;
        height: auto;
    }
    .hm-exp-panel {
        flex: none;
        height: 320px;
    }
    .hm-exp-panel.is-active { flex: none; height: 440px; }
    .hm-ep-side-label { display: none; }

    /* Carousel buttons */
    .hm-disc-btn--prev { left: 20px; }
    .hm-disc-btn--next { right: 20px; }

    /* Layers ghost nums */
    .hm-layer-ghost-num { font-size: 120px; }

    /* Moments canvas */
    .hm-moments-canvas { grid-template-columns: repeat(2, 1fr); }
    #hmMc1, #hmMc2, #hmMc3, #hmMc4, #hmMc5, #hmMc6 { margin-top: 0; }
}

@media (max-width: 768px) {
    .hm-exp-panels { height: auto; }
    .hm-exp-panel, .hm-exp-panel.is-active { height: 300px; }
    .hm-ep-content { padding: 28px; }

    .hm-disc-scene { width: 300px; height: 400px; }
    .hm-disc-stage { height: 460px; }
    .hm-disc-btn--prev { left: 10px; }
    .hm-disc-btn--next { right: 10px; }

    .hm-layer-content, .hm-layer-content--right { max-width: 100%; }
    .hm-layer-content--right { margin-left: 0; }
    .hm-layer-ghost-num { display: none; }
    .hm-layer-title { font-size: 40px; }
    .hm-layer-badges { flex-wrap: wrap; }

    .hm-moments-canvas { grid-template-columns: 1fr; padding: 0 20px 20px; }
    .hm-layers-prog { display: none !important; }

    .hm-world-stage { height: 440px; }
    .hm-world-earth-sphere { width: 180px; height: 180px; }
    .hm-world-earth-halo--1 { width: 240px; height: 240px; }
    .hm-world-earth-halo--2 { width: 360px; height: 360px; }
    .hm-world-info-card { display: none; }
    #hmWic1 { display: flex; position: static; margin: 0 auto 16px; width: fit-content; }
    .hm-world-node { display: none; }
    .hm-world-stats { gap: 20px; }
    .hm-ws-num { font-size: 2rem; }
}


/* section gaps removed */


/* ============================================================
   §6  RV OFFER — New Animated Section
   ============================================================ */
.rv-offer {
    position: relative;
    background: #EEF7FF;
    overflow: hidden;
    padding: 0 0 0;
}

/* ── Diagonal stripe background ── */
.rv-offer-bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.rv-offer-stripe {
    position: absolute;
    width: 3px;
    height: 200%;
    background: linear-gradient(180deg, transparent, rgba(11,94,215,0.05), transparent);
    transform: rotate(20deg);
    top: -50%;
    animation: rvStripeSlide 8s linear infinite;
}
.rv-offer-stripe--1 { left: 15%; animation-delay: 0s; animation-duration: 10s; }
.rv-offer-stripe--2 { left: 45%; animation-delay: 3s;  animation-duration: 14s; opacity: 0.6; }
.rv-offer-stripe--3 { left: 75%; animation-delay: 6s;  animation-duration: 11s; opacity: 0.4; }

@keyframes rvStripeSlide {
    0%   { transform: rotate(20deg) translateY(0); }
    100% { transform: rotate(20deg) translateY(50%); }
}

.rv-offer-glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(100px);
}
.rv-offer-glow--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(74,169,255,0.10) 0%, transparent 65%);
    top: -150px; right: -100px;
}
.rv-offer-glow--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(11,94,215,0.06) 0%, transparent 65%);
    bottom: -80px; left: 5%;
}

/* ── Ticker ── */
.rv-offer-ticker {
    width: 100%; overflow: hidden;
    background: rgba(11,94,215,0.05);
    border-bottom: 1px solid rgba(11,94,215,0.10);
    padding: 11px 0;
    position: relative; z-index: 2;
}
.rv-offer-ticker--rev {
    background: rgba(0,0,0,0.02);
    border-bottom: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
}
.rv-offer-ticker-track {
    display: flex; align-items: center; gap: 32px;
    white-space: nowrap;
    animation: rvTickerScroll 22s linear infinite;
    width: max-content;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 700;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: rgba(11,94,215,0.60);
}
.rv-offer-ticker-track--rev {
    animation: rvTickerScrollRev 28s linear infinite;
    color: rgba(0,0,0,0.28);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
}
.rv-ot-sep { color: rgba(11,94,215,0.30); font-size: 0.55rem; }

@keyframes rvTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes rvTickerScrollRev {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── Inner layout ── */
.rv-offer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative; z-index: 2;
}

/* ── LEFT ── */
.rv-offer-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: #0B5ED7;
    margin-bottom: 22px;
}
.rv-offer-ew-line {
    display: block; width: 32px; height: 1px;
    background: #0B5ED7;
}
.rv-offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 5.5vw, 80px);
    font-weight: 700; line-height: 1.06;
    color: #0B1A3B;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.rv-offer-title em {
    font-style: italic;
    color: #0B5ED7;
    background: none;
    -webkit-background-clip: initial; background-clip: initial;
    -webkit-text-fill-color: initial;
}
.rv-offer-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem; line-height: 1.80; font-weight: 300;
    color: rgba(0,0,0,0.50);
    max-width: 400px;
    margin-bottom: 44px;
}

/* Stats row */
.rv-offer-stats {
    display: flex; align-items: center;
    gap: 0;
    margin-bottom: 44px;
    padding: 28px 32px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}
.rv-offer-stat { flex: 1; text-align: center; }
.rv-os-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 700; line-height: 1;
    color: #0B1A3B;
    margin-bottom: 6px;
}
.rv-os-lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(0,0,0,0.42);
}
.rv-offer-stat-sep {
    width: 1px; height: 36px; flex-shrink: 0;
    background: rgba(0,0,0,0.10);
    margin: 0 8px;
}

/* Buttons */
.rv-offer-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rv-offer-btn-gold {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 36px;
    background: #0B5ED7;
    border-radius: 100px;
    color: White; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(129, 169, 230, 0.6);
    transition: transform 0.30s ease, box-shadow 0.30s ease;
    position: relative; overflow: hidden;
}
.rv-offer-btn-gold::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.55s ease;
}
.rv-offer-btn-gold:hover::after { left: 100%; }
.rv-offer-btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 50px rgba(212,137,14,0.52);
}
.rv-offer-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 36px;
    border: 1.5px solid rgba(0,0,0,0.20);
    border-radius: 100px;
    color: rgba(0,0,0,0.65);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 600;
    transition: all 0.30s ease;
}
.rv-offer-btn-outline:hover {
    border-color: rgba(0,0,0,0.45);
    color: #0B1A3B;
    transform: translateY(-2px);
}

/* ── RIGHT — Ticket card ── */
.rv-offer-right {
    display: flex; align-items: center; justify-content: center;
}
.rv-offer-ticket {
    position: relative;
    background: linear-gradient(145deg, #0d1f4a 0%, #091536 60%, #060e28 100%);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 24px;
    padding: 36px 36px 32px;
    width: 100%; max-width: 380px;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.50),
        0 0 0 1px rgba(74,169,255,0.06) inset,
        0 1px 0 rgba(255,255,255,0.06) inset;
    overflow: visible;
}
/* Animated border glow */
.rv-offer-ticket::before {
    content: '';
    position: absolute; inset: -1px; border-radius: 25px; z-index: -1;
    background: linear-gradient(135deg, rgba(212,175,55,0.40), transparent 40%, rgba(74,169,255,0.20), transparent 80%, rgba(212,175,55,0.30));
    animation: rvTicketBorderSpin 4s linear infinite;
    background-size: 300% 300%;
}
@keyframes rvTicketBorderSpin {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* SVG Ring */
.rv-ot-ring-wrap {
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
}
.rv-ot-ring-svg {
    width: 100%; height: 100%;
    transform: rotate(0deg);
    animation: rvRingSpin 12s linear infinite;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
}
@keyframes rvRingSpin {
    to { transform: rotate(360deg); }
}
.rv-ot-ring-arc { transition: stroke-dashoffset 1.5s ease; }
.rv-ot-ring-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.rv-ot-ring-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: #ffffff; line-height: 1;
}
.rv-ot-ring-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.50rem; font-weight: 700;
    letter-spacing: 0.12em; color: rgba(255,255,255,0.50);
    text-transform: uppercase;
}

/* Ticket header */
.rv-ot-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.80);
    margin-bottom: 20px;
}
.rv-ot-from {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}
.rv-ot-price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 6px;
}
.rv-ot-currency {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700; color: #ffffff;
}
.rv-ot-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem; font-weight: 700; line-height: 1;
    color: #ffffff; letter-spacing: -2px;
}
.rv-ot-per {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem; color: rgba(255,255,255,0.35);
    padding-bottom: 8px;
}
.rv-ot-incl {
    font-family: 'Poppins', sans-serif;
    font-size: 0.70rem; color: rgba(255,255,255,0.35);
    margin-bottom: 0;
}

/* Perforated divider */
.rv-ot-perf {
    display: flex; align-items: center; gap: 0;
    margin: 24px -36px;
}
.rv-ot-perf-circle {
    width: 22px; height: 22px; flex-shrink: 0;
    background: #040e24;
    border-radius: 50%;
}
.rv-ot-perf-circle--l { margin-left: -11px; }
.rv-ot-perf-circle--r { margin-right: -11px; }
.rv-ot-perf-line {
    flex: 1;
    border-top: 1.5px dashed rgba(212,175,55,0.22);
}

/* Perks */
.rv-ot-perks {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.rv-ot-perks li {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.80rem; color: rgba(255,255,255,0.65);
}
.rv-ot-perks li svg { flex-shrink: 0; }

/* Ticket CTA */
.rv-ot-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; padding: 15px 24px;
    background: #0B5ED7;
    border-radius: 12px;
    color: White; font-family: 'Montserrat', sans-serif;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(129, 169, 230, 0.6);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative; overflow: hidden;
}
.rv-ot-cta::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    transition: left 0.50s ease;
}
.rv-ot-cta:hover::before { left: 100%; }
.rv-ot-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212,175,55,0.50);
}

/* Floating plane */
.rv-ot-plane {
    position: absolute; bottom: 22px; right: 28px;
    font-size: 1.6rem; opacity: 0.18;
    animation: rvPlaneDrift 5s ease-in-out infinite;
}
@keyframes rvPlaneDrift {
    0%,100% { transform: translate(0, 0) rotate(-5deg); }
    50%      { transform: translate(6px, -8px) rotate(5deg); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .rv-offer-inner {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 70px; padding-bottom: 70px;
    }
    .rv-offer-ticket { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 540px) {
    .rv-offer-title { font-size: 42px; }
    .rv-offer-stats { flex-direction: column; gap: 20px; padding: 20px; }
    .rv-offer-stat-sep { width: 40px; height: 1px; }
    .rv-offer-btns { flex-direction: column; }
    .rv-offer-btn-gold, .rv-offer-btn-outline { width: 100%; justify-content: center; }
}


/* ============================================================
   COLOUR OVERRIDES — per user request
   ============================================================ */

/* ── §7 Journey Layers: remove overlay on Chapter I (layer 1) ── */
.hm-layer--1 .hm-layer-overlay {
    background: transparent;
}

/* ── §8 Trending Destinations: white background ── */
.hm-spot { background: #EEF7FF; }

.hm-spot-left {
    background: #EEF7FF;
}
/* Remove the right-edge gradient fade */
.hm-spot-left::after {
    display: none;
}

.hm-spot-right { background: #EEF7FF; }

/* Text colour overrides for white background */
.hm-spot-eyebrow      { color: rgba(14,65,155,0.70); }
.hm-spot-eye-line     { background: rgba(14,65,155,0.22); }
.hm-spot-curr         { color: #0B1A3B; }
.hm-spot-total        { color: rgba(12,26,62,0.50); }
.hm-spot-ctr-track    { background: rgba(12,26,62,0.12); }
.hm-spot-country      { color: rgba(12,26,62,0.70); letter-spacing: 0.10em; }
.hm-spot-name         { color: #0c1a3e; }
.hm-spot-desc         { color: rgba(12,26,62,0.75); }
.hm-spot-hl           { color: rgba(12,26,62,0.80); }
.hm-hl-dot            { background: #0B5ED7; box-shadow: none; }
.hm-spot-duration     { color: rgba(12,26,62,0.65); }
.hm-spot-price        { color: rgba(12,26,62,0.70); }
.hm-spot-price strong { color: #0B1A3B; }
.hm-spot-thumb {
    border-color: rgba(12,26,62,0.14);
    opacity: 0.50;
}
.hm-spot-thumb.is-active {
    border-color: #0B5ED7;
    opacity: 1;
}
.hm-spot-thumb:hover:not(.is-active) {
    border-color: rgba(12,26,62,0.28);
    opacity: 0.75;
}

/* ── Trending Destinations: right-side image — smaller + border-radius ── */
.hm-spot-img-stage {
    inset: 32px 28px 32px 28px;  /* shrink from all 4 sides */
    border-radius: 20px;
    overflow: hidden;
}
.hm-spot-img-layer {
    border-radius: 20px;
    overflow: hidden;
}
/* Right panel: light background with border radius */
.hm-spot-right {
    background: #EEF7FF;
    border-radius: 20px;
    margin: 24px 24px 24px 0;
}


/* ============================================================
   WHY CHOOSE US — Interactive Tab Panel
   Overrides style.css .why-us rules
   ============================================================ */
.why-us {
    background: #EEF7FF !important;
    padding: 72px 0 !important;
}
.why-us::before,
.why-us::after { display: none !important; }
.why-wrap { display: block !important; }

/* Header */
.why-header { margin-bottom: 44px; text-align: center; }
.why-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.57rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: #0B5ED7;
    margin-bottom: 14px;
}
.why-eye-line {
    display: block; width: 22px; height: 1px;
    background: #0B5ED7;
}
.why-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(34px, 3.5vw, 52px) !important;
    font-weight: 700 !important; line-height: 1.10 !important;
    color: #111 !important; margin: 0 !important;
    letter-spacing: -0.5px !important;
}
.why-title em { font-style: italic; color: #0B5ED7 !important; -webkit-text-fill-color: initial !important; }

/* ── Two-column panel layout ── */
.why-panel-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 20px;
    overflow: hidden;
}

/* ── LEFT: Tab navigation ── */
.why-tabs {
    border-right: 1px solid #0B5ED7;
    display: flex; flex-direction: column;
    position: relative;
}
.why-tab {
    display: flex; align-items: center; gap: 14px;
    width: 100%; padding: 18px 22px;
    border: none; background: transparent;
    cursor: pointer; text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
    transition: background 0.22s ease;
}
.why-tab:last-of-type { border-bottom: none; }

/* Hover fill */
.why-tab::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.03);
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}
.why-tab:hover::before { transform: translateX(0); }

/* Active: solid left border */
.why-tab.is-active {
    background: rgba(0,0,0,0.03);
}
.why-tab.is-active::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: #111;
}

.why-tab-n {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    color: rgba(0,0,0,0.28);
    flex-shrink: 0; width: 22px;
    transition: color 0.22s ease;
}
.why-tab.is-active .why-tab-n { color: #0B5ED7; }

.why-tab-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px; font-weight: 600;
    color: #0B5ED7;
    flex: 1;
    transition: color 0.22s ease;
}
.why-tab.is-active .why-tab-name { color: #111; }

.why-tab-arrow {
    font-size: 0.9rem; color: #0B5ED7;
    flex-shrink: 0;
    transform: translateX(-4px);
    transition: transform 0.25s ease, color 0.25s ease;
    opacity: 0;
}
.why-tab.is-active .why-tab-arrow,
.why-tab:hover .why-tab-arrow {
    opacity: 1; color: #0B5ED7;
    transform: translateX(0);
}

/* Auto-progress bar */
.why-progress-track {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: rgba(0,0,0,0.06);
}
.why-progress-fill {
    height: 100%; background: #0B5ED7; width: 0%;
    transition: width 0.1s linear;
}

/* ── RIGHT: Content panels ── */
.why-content-wrap {
    position: relative;
    padding: 48px 52px;
    min-height: 380px;
    display: flex; align-items: center;
}
.why-panel {
    display: none;
    width: 100%;
}
.why-panel.is-active { display: block; }

.why-panel-count {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #0B5ED7;
    margin-bottom: 16px;
}
.why-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700; color: #0B5ED7; line-height: 1.10;
    margin-bottom: 20px; letter-spacing: -0.5px;
}
.why-panel-rule {
    width: 48px; height: 2px;
    background: #0B5ED7; margin-bottom: 20px;
    transform-origin: left;
}
.why-panel-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; line-height: 1.80;
    color: rgba(0,0,0,0.52); margin-bottom: 28px;
}
.why-panel-pts {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.why-panel-pts li {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px; color: rgba(0,0,0,0.55);
}
.why-panel-pts li::before {
    content: '';
    width: 18px; height: 1.5px; flex-shrink: 0;
    background: #111;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .why-panel-wrap { grid-template-columns: 1fr; }
    .why-tabs { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.09); }
    .why-tab { flex: 1 0 auto; border-bottom: none; border-right: 1px solid rgba(0,0,0,0.07); padding: 14px 16px; }
    .why-tab-arrow { display: none; }
    .why-progress-track { display: none; }
    .why-content-wrap { padding: 32px 28px; min-height: auto; }
}
@media (max-width: 540px) {
    .why-tabs { overflow-x: auto; flex-wrap: nowrap; }
    .why-tab { flex-shrink: 0; }
}


/* ============================================================
   HM-PROMISE — Editorial split statements, white bg, black text
   ============================================================ */
.hm-promise {
    background: #EEF7FF;
    padding: 48px 0;
}

/* Header */
.hm-promise-top {
    margin-bottom: 36px;
    text-align: center;
}
.hm-promise-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.57rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: #0B5ED7;
    margin-bottom: 14px;
}
.hm-pe-line {
    display: block; width: 22px; height: 1px;
    background: #0B5ED7;
}
.hm-promise-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700; line-height: 1.10;
    color: #111; letter-spacing: -0.5px;
    margin: 0;
}
.hm-promise-title em {
    font-style: italic;
    color: #0B5ED7;
}

/* Statement rows */
.hm-stmts {
    border-top: 1px solid rgba(0,0,0,0.09);
    margin-bottom: 32px;
}
.hm-stmt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    overflow: hidden;
}

/* Left: number + heading with clip reveal */
.hm-stmt-left {
    display: flex;
    align-items: baseline;
    gap: 18px;
}
.hm-stmt-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 700; line-height: 1;
    color: rgba(0,0,0,0.07);
    flex-shrink: 0;
    user-select: none;
}
/* Clip trap: overflow hidden so h3 can slide up into view */
.hm-stmt-htrap {
    overflow: hidden;
    line-height: 1.10;
}
.hm-stmt-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700; color: #0B5ED7;
    margin: 0; line-height: 1.10;
    /* JS will animate translateY from 100% to 0 */
    will-change: transform;
}

/* Right: description */
.hm-stmt-right p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; line-height: 1.78;
    color: rgba(0,0,0,0.52);
    margin: 0;
}

/* CTA */
.hm-promise-cta {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
}
.hm-promise-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 36px;
    background: #0B5ED7;
    border-radius: 100px; color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.4px;
    transition: background 0.25s ease, transform 0.25s ease;
}
.hm-promise-btn:hover { background: #333; transform: translateY(-2px); }

.hm-promise-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px; font-weight: 600;
    color: rgba(0,0,0,0.40); letter-spacing: 0.3px;
    transition: color 0.22s ease;
}
.hm-promise-link:hover { color: #111; }

/* Responsive */
@media (max-width: 768px) {
    .hm-stmt { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
    .hm-stmt-num { font-size: 2.8rem; }
    .hm-promise-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
}
