/* ==========================================================================
   DESIGN UR VACATIONS — Light Luxury India Travel
   ========================================================================== */

:root {
    --bg: #FAFAFA;
    --ivory: #FDFBF7;
    --bone: #F4F1EA;
    --white: #FFFFFF;
    --ink: #0B131F;
    --ink-2: #111C2E;
    --text: #1F2937;
    --muted: #667085;
    --faint: #98A2B3;
    --cyan: #00A8B5;
    --teal: #06B6D4;
    --emerald: #059669;
    --cyan-tint: #E6F7F8;
    --emerald-tint: #D1FAE5;
    --gold: #C5A059;
    --gold-bright: #D4AF37;
    --gold-tint: #F9F3E3;
    --line: rgba(11, 19, 31, .08);
    --line-gold: rgba(197, 160, 89, .35);
    --glass: rgba(255, 255, 255, .72);
    --glass-border: rgba(255, 255, 255, .65);
    --shadow-s: 0 2px 10px rgba(11, 19, 31, .05);
    --shadow-m: 0 12px 40px -12px rgba(11, 19, 31, .14);
    --shadow-l: 0 30px 80px -20px rgba(11, 19, 31, .22);
    --r-s: 12px;
    --r-m: 20px;
    --r-l: 28px;
    --font-d: 'Fraunces', Georgia, serif;
    --font-b: 'Instrument Sans', system-ui, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --container: 1320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%
}

html.lenis,
html.lenis body {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important
}

/* ==========================================================================
   00 · MODERN LUXURY PRELOADER (GRAND LOTUS BLOOM & DELHI COLLAGE)
   ========================================================================== */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: radial-gradient(circle at center, #132238 0%, #070D18 60%, #03060B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
    perspective: 1200px;
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.02);
    visibility: hidden;
    pointer-events: none;
}

/* Background floating collage */
.preloader__collage {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.preloader__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(19, 34, 56, 0.65) 0%, rgba(3, 6, 11, 0.94) 80%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.p-thumb {
    position: absolute;
    width: 175px;
    height: 220px;
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 168, 181, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    opacity: 0.38;
    transition: transform .8s var(--ease), opacity .8s;
}

.p-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.p-thumb span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(11, 19, 31, 0.75);
    padding: 5px 8px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.p-thumb-1 { top: 6%; left: 7%; animation: floatDrift1 18s ease-in-out infinite alternate; }
.p-thumb-2 { top: 8%; right: 7%; animation: floatDrift2 20s ease-in-out infinite alternate; }
.p-thumb-3 { bottom: 8%; left: 6%; animation: floatDrift3 19s ease-in-out infinite alternate; }
.p-thumb-4 { bottom: 6%; right: 7%; animation: floatDrift1 22s ease-in-out infinite alternate-reverse; }
.p-thumb-5 { top: 48%; left: 2%; animation: floatDrift2 21s ease-in-out infinite alternate; transform: translateY(-50%); }
.p-thumb-6 { top: 50%; right: 2%; animation: floatDrift3 20s ease-in-out infinite alternate; transform: translateY(-50%); }

@keyframes floatDrift1 {
    0% { transform: translate(0, 0) rotate(-4deg) scale(0.98); }
    100% { transform: translate(30px, 24px) rotate(5deg) scale(1.04); }
}

@keyframes floatDrift2 {
    0% { transform: translate(0, 0) rotate(5deg) scale(1.03); }
    100% { transform: translate(-25px, 30px) rotate(-4deg) scale(0.97); }
}

@keyframes floatDrift3 {
    0% { transform: translate(0, 0) rotate(-3deg); }
    100% { transform: translate(22px, -26px) rotate(6deg); }
}

/* Center Lotus Stage */
.preloader__core {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90vw;
}

.lotus-stage {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lotus-aura {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 181, 0.5) 0%, rgba(212, 175, 55, 0.35) 45%, transparent 75%);
    filter: blur(28px);
    animation: lotusAuraPulse 4s ease-in-out infinite alternate;
}

.lotus-aura-outer {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(5, 150, 105, 0.15) 50%, transparent 80%);
    filter: blur(40px);
    animation: lotusAuraOuterPulse 5s ease-in-out infinite alternate;
}

@keyframes lotusAuraPulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.35); opacity: 0.95; }
}

@keyframes lotusAuraOuterPulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.25); opacity: 0.8; }
}

/* Lotus Flower Petals Bloom Animations */
.lotus-flower {
    position: absolute;
    width: 360px;
    height: 360px;
    pointer-events: none;
}

.lotus-flower--outer {
    animation: lotusRotateOuter 34s linear infinite;
}

.lotus-flower--inner {
    animation: lotusRotateInner 26s linear infinite reverse;
}

.p-out {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92px;
    height: 160px;
    margin-left: -46px;
    margin-top: -148px;
    transform-origin: center bottom;
    border-radius: 82% 0 82% 0;
    background: linear-gradient(135deg, rgba(0, 168, 181, 0.46) 0%, rgba(212, 175, 55, 0.52) 55%, rgba(5, 150, 105, 0.38) 100%);
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.45), 0 8px 30px rgba(0, 168, 181, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    animation: petalBloomOuter 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-in {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 125px;
    margin-left: -37px;
    margin-top: -115px;
    transform-origin: center bottom;
    border-radius: 80% 0 80% 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(0, 168, 181, 0.5) 65%, rgba(255, 255, 255, 0.45) 100%);
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.55), 0 6px 24px rgba(212, 175, 55, 0.4);
    border: 1.2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    animation: petalBloomInner 3.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Outer Petal Rotations & Delays */
.p-1 { --rot: 0deg; transform: rotate(0deg) scale(0); animation-delay: 0.1s; }
.p-2 { --rot: 45deg; transform: rotate(45deg) scale(0); animation-delay: 0.22s; }
.p-3 { --rot: 90deg; transform: rotate(90deg) scale(0); animation-delay: 0.34s; }
.p-4 { --rot: 135deg; transform: rotate(135deg) scale(0); animation-delay: 0.46s; }
.p-5 { --rot: 180deg; transform: rotate(180deg) scale(0); animation-delay: 0.58s; }
.p-6 { --rot: 225deg; transform: rotate(225deg) scale(0); animation-delay: 0.70s; }
.p-7 { --rot: 270deg; transform: rotate(270deg) scale(0); animation-delay: 0.82s; }
.p-8 { --rot: 315deg; transform: rotate(315deg) scale(0); animation-delay: 0.94s; }

/* Inner Petal Rotations & Delays (offset by 22.5deg for dense natural flower) */
.pi-1 { --rot: 22.5deg; transform: rotate(22.5deg) scale(0); animation-delay: 0.5s; }
.pi-2 { --rot: 67.5deg; transform: rotate(67.5deg) scale(0); animation-delay: 0.65s; }
.pi-3 { --rot: 112.5deg; transform: rotate(112.5deg) scale(0); animation-delay: 0.8s; }
.pi-4 { --rot: 157.5deg; transform: rotate(157.5deg) scale(0); animation-delay: 0.95s; }
.pi-5 { --rot: 202.5deg; transform: rotate(202.5deg) scale(0); animation-delay: 1.1s; }
.pi-6 { --rot: 247.5deg; transform: rotate(247.5deg) scale(0); animation-delay: 1.25s; }
.pi-7 { --rot: 292.5deg; transform: rotate(292.5deg) scale(0); animation-delay: 1.4s; }
.pi-8 { --rot: 337.5deg; transform: rotate(337.5deg) scale(0); animation-delay: 1.55s; }

.petal-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFE17D 0%, #D4AF37 50%, #00A8B5 100%);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.95), 0 0 20px rgba(0, 168, 181, 0.8);
    animation: coreGlow 3s ease-in-out infinite alternate;
}

@keyframes petalBloomOuter {
    0% {
        opacity: 0;
        transform: rotate(var(--rot, 0deg)) scale(0.05) translateY(45px);
    }
    55% {
        opacity: 0.95;
        transform: rotate(var(--rot, 0deg)) scale(1.18) translateY(-8px);
    }
    100% {
        opacity: 0.88;
        transform: rotate(var(--rot, 0deg)) scale(1) translateY(0);
    }
}

@keyframes petalBloomInner {
    0% {
        opacity: 0;
        transform: rotate(var(--rot, 0deg)) scale(0.05) translateY(35px);
    }
    60% {
        opacity: 1;
        transform: rotate(var(--rot, 0deg)) scale(1.15) translateY(-5px);
    }
    100% {
        opacity: 0.92;
        transform: rotate(var(--rot, 0deg)) scale(1) translateY(0);
    }
}

@keyframes lotusRotateOuter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lotusRotateInner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes coreGlow {
    0% { transform: scale(0.88); opacity: 0.75; }
    100% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 22px #FFE17D); }
}

/* Logo container emerging from flower center */
.preloader__logo-container {
    position: relative;
    z-index: 4;
    background: #ffffff;
    padding: 16px 30px;
    border-radius: var(--r-l);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.6), 0 0 45px rgba(0, 168, 181, 0.5), 0 0 30px rgba(212, 175, 55, 0.45);
    animation: logoEmerge 2.2s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: 1.4s;
    opacity: 0;
    transform: scale(0.5) translateY(25px);
    transition: transform .4s ease;
}

@keyframes logoEmerge {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(25px);
        filter: blur(14px);
    }
    65% {
        opacity: 1;
        transform: scale(1.08) translateY(-6px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.preloader__logo-img {
    height: 68px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

/* Preloader meta & progress */
.preloader__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.preloader__tagline {
    font-family: var(--font-d);
    font-size: clamp(16px, 2.4vw, 20px);
    font-weight: 550;
    letter-spacing: .09em;
    color: #FDFBF7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    animation: textFade 1.4s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.preloader__track {
    width: 320px;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 168, 181, 0.35);
}

.preloader__fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--gold-bright), var(--emerald));
    border-radius: 999px;
    transition: width .28s linear;
}

.preloader__quote-wrap {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__quote {
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 650;
    transition: opacity .4s ease, transform .4s ease;
}

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

@media (max-width: 768px) {
    .p-thumb {
        width: 110px;
        height: 140px;
        opacity: 0.24;
    }
    .p-thumb-5, .p-thumb-6 {
        display: none;
    }
    .lotus-stage {
        width: 290px;
        height: 290px;
    }
    .lotus-flower {
        width: 280px;
        height: 280px;
    }
    .p-out {
        width: 70px;
        height: 120px;
        margin-left: -35px;
        margin-top: -110px;
    }
    .p-in {
        width: 58px;
        height: 95px;
        margin-left: -29px;
        margin-top: -85px;
    }
    .preloader__logo-container {
        padding: 12px 20px;
    }
    .preloader__logo-img {
        height: 48px;
    }
    .preloader__track {
        width: 240px;
    }
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

ul {
    list-style: none
}

::selection {
    background: var(--cyan);
    color: #fff
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--bone)
}

::-webkit-scrollbar-thumb {
    background: #C9CDD4;
    border-radius: 8px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan)
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px)
}

.section {
    padding-block: clamp(72px, 9vw, 132px);
    position: relative
}

.section--ivory {
    background: var(--ivory)
}

.section--bone {
    background: var(--bone)
}

.section--tint {
    background: linear-gradient(180deg, var(--ivory), var(--cyan-tint) 140%)
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
.display {
    font-family: var(--font-d);
    font-weight: 480;
    color: var(--ink);
    letter-spacing: -.015em;
    line-height: 1.08
}

h1 {
    font-size: clamp(2.6rem, 6.2vw, 5.4rem)
}

h2 {
    font-size: clamp(2rem, 4.4vw, 3.6rem)
}

h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.5rem)
}

.italic {
    font-style: italic;
    font-weight: 400
}

.lead {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    color: var(--muted);
    max-width: 60ch
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold)
}

.chapter {
    position: absolute;
    top: clamp(20px, 4vw, 48px);
    right: clamp(20px, 4vw, 48px);
    font-family: var(--font-d);
    font-size: clamp(4rem, 9vw, 8.5rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(11, 19, 31, .12);
    pointer-events: none;
    user-select: none;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(36px, 5vw, 64px)
}

.section-head h2 {
    margin-top: 14px;
    max-width: 16ch
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .3s, color .3s, border-color .3s;
    will-change: transform;
}

.btn .arr {
    transition: transform .45s var(--ease)
}

.btn:hover .arr {
    transform: translateX(6px)
}

.btn--dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(11, 19, 31, .5)
}

.btn--dark:hover {
    transform: translateY(-3px);
    background: #16233B
}

.btn--accent {
    background: linear-gradient(120deg, var(--cyan), var(--emerald));
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(0, 168, 181, .55)
}

.btn--accent:hover {
    transform: translateY(-3px)
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .08)
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-3px)
}

.btn--outline {
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--white)
}

.btn--outline:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-m)
}

.btn--sm {
    padding: 12px 22px;
    font-size: 12px
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
    transition: gap .35s var(--ease), color .3s;
}

.link-arrow:hover {
    gap: 16px;
    color: var(--cyan)
}

/* ---------- Utility bar + Header ---------- */

.utility {
    background: var(--ink);
    color: #CBD5E1;
    font-size: 12.5px;
    letter-spacing: .04em
}

.utility .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-block: 9px
}

.utility a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .25s
}

.utility a:hover {
    color: var(--gold-bright)
}

.utility .u-right {
    display: flex;
    gap: 22px
}

.utility svg {
    width: 13px;
    height: 13px;
    flex: none
}

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    transition: background-color .4s, box-shadow .4s, backdrop-filter .4s;
}

.header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 var(--line), var(--shadow-s)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-block: 18px;
    transition: padding .4s
}

.header.scrolled .container {
    padding-block: 12px
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1.1;
    text-decoration: none;
    transition: transform .3s var(--ease);
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo-img {
    height: 70px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
    transition: transform .35s var(--ease);
}

.brand:hover .brand-logo-img {
    transform: scale(1.03);
}

.brand b {
    font-family: var(--font-d);
    font-weight: 560;
    font-size: 21px;
    letter-spacing: .02em;
    color: var(--ink)
}

.brand b em {
    font-style: italic;
    color: var(--cyan)
}

.brand span {
    font-size: 9.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px
}

.nav {
    display: flex;
    gap: clamp(16px, 2.2vw, 34px)
}

.nav a {
    font-size: 13.5px;
    font-weight: 550;
    letter-spacing: .04em;
    color: var(--text);
    position: relative;
    padding-block: 6px
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--cyan), var(--gold-bright));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease)
}

.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

.burger i {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform .35s var(--ease), opacity .3s
}

.burger.open i:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open i:nth-child(2) {
    opacity: 0
}

.burger.open i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px clamp(24px, 7vw, 60px) 48px;
    transform: translateY(-102%);
    transition: transform .6s var(--ease);
}

.mobile-nav.open {
    transform: translateY(0)
}

.mobile-nav a {
    font-family: var(--font-d);
    font-size: clamp(1.7rem, 6.5vw, 2.6rem);
    color: var(--ink);
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile-nav a small {
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--gold)
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    height: max(100svh, 660px);
    overflow: hidden;
    background: var(--ink)
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease), visibility 0s 1.1s
}

.hero__slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.1s var(--ease)
}

.hero__img {
    position: absolute;
    inset: -6%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02)
}

.hero__slide.active .hero__img {
    animation: kenburns 7.5s var(--ease) forwards
}

@keyframes kenburns {
    from {
        transform: scale(1.12) translate(1.5%, 1%)
    }

    to {
        transform: scale(1.02) translate(0, 0)
    }
}

.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(78deg, rgba(11, 19, 31, .72) 0%, rgba(11, 19, 31, .38) 46%, rgba(11, 19, 31, .08) 78%), linear-gradient(0deg, rgba(11, 19, 31, .55) 0%, transparent 36%)
}

.hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(120px, 17vh, 190px);
    color: #fff;
    pointer-events: none;
}

.hero__content .container {
    pointer-events: auto
}

.hero__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold-bright)
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    color: #fff;
    max-width: 13ch;
    margin-bottom: 22px
}

.hero__title .line {
    display: block;
    overflow: hidden
}

.hero__title .line>span {
    display: block;
    transform: translateY(115%)
}

.hero__slide.active .hero__title .line>span {
    animation: lineup 1s var(--ease) forwards
}

.hero__slide.active .hero__title .line:nth-child(2)>span {
    animation-delay: .12s
}

.hero__slide.active .hero__title .line:nth-child(3)>span {
    animation-delay: .24s
}

@keyframes lineup {
    to {
        transform: translateY(0)
    }
}

.hero__desc {
    max-width: 46ch;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
    margin-bottom: 34px;
    opacity: 0;
    transform: translateY(16px)
}

.hero__slide.active .hero__desc {
    animation: fadeup .9s var(--ease) .4s forwards
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px)
}

.hero__slide.active .hero__ctas {
    animation: fadeup .9s var(--ease) .55s forwards
}

@keyframes fadeup {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero__count {
    position: absolute;
    top: clamp(96px, 14vh, 140px);
    right: clamp(20px, 4vw, 48px);
    font-family: var(--font-d);
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    letter-spacing: .2em;
}

.hero__count b {
    color: #fff;
    font-size: 30px;
    font-weight: 500
}

.hero__ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(84px, 11vh, 120px);
    z-index: 5;
}

.hero__ui .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.hero__pager {
    display: flex;
    gap: 10px
}

.hero__pager button {
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .3);
    transition: background .3s, width .4s var(--ease)
}

.hero__pager button.on {
    background: var(--gold-bright);
    width: 52px
}

.hero__nav {
    display: flex;
    gap: 12px
}

.hero__nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .06);
    transition: background .3s, transform .35s var(--ease), border-color .3s;
}

.hero__nav button:hover {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.08);
    border-color: #fff
}

.hero__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .14);
    z-index: 6
}

.hero__progress i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--gold-bright))
}

.hero__scrollhint {
    position: absolute;
    left: clamp(20px, 4vw, 48px);
    bottom: 26px;
    color: rgba(255, 255, 255, .55);
    font-size: 10.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero__scrollhint i {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--gold-bright), transparent);
    display: block;
    animation: drip 2s infinite
}

@keyframes drip {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ---------- Trip planner ---------- */

.planner {
    position: relative;
    z-index: 20;
    margin-top: clamp(-104px, -9vh, -72px)
}

.planner__panel {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-l);
    box-shadow: var(--shadow-l);
    padding: clamp(24px, 3.4vw, 44px);
}

.planner__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px
}

.planner__head h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem)
}

.planner__head p {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: .04em
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field label {
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted)
}

.field input,
.field select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-s);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .85);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .3s, box-shadow .3s;
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23667085' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 38px
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, .12)
}

.planner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 24px
}

.planner__actions .note {
    font-size: 12.5px;
    color: var(--muted)
}

.planner__actions .note a {
    color: var(--cyan);
    font-weight: 600
}

/* ---------- Delhi gateway ---------- */

.gateway {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center
}

.gateway__media {
    position: relative
}

.gateway__media .frame {
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    aspect-ratio: 4/5
}

.gateway__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease)
}

.gateway__media:hover img {
    transform: scale(1.05)
}

.gateway__badge {
    position: absolute;
    left: -18px;
    bottom: 34px;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-m);
    padding: 18px 22px;
    max-width: 250px;
}

.gateway__badge b {
    font-family: var(--font-d);
    font-size: 17px;
    color: var(--ink);
    display: block;
    margin-bottom: 4px
}

.gateway__badge span {
    font-size: 12.5px;
    color: var(--muted)
}

.gateway__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 34px
}

.chip {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 12.5px;
    font-weight: 550;
    color: var(--text);
    transition: border-color .3s, color .3s, transform .3s var(--ease);
}

.chip:hover {
    border-color: var(--gold);
    color: var(--cyan);
    transform: translateY(-2px)
}

/* ---------- Experience cards ---------- */

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.exp-card {
    position: relative;
    border-radius: var(--r-m);
    overflow: hidden;
    aspect-ratio: 4/4.6;
    box-shadow: var(--shadow-m);
    isolation: isolate
}

.exp-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease)
}

.exp-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, transparent 34%, rgba(11, 19, 31, .82) 92%)
}

.exp-card:hover img {
    transform: scale(1.08)
}

.exp-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    z-index: 2;
    color: #fff
}

.exp-card__body .num {
    font-family: var(--font-d);
    font-style: italic;
    color: var(--gold-bright);
    font-size: 14px;
    letter-spacing: .15em
}

.exp-card__body h3 {
    color: #fff;
    margin: 6px 0 8px
}

.exp-card__body p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .78);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .6s var(--ease), opacity .5s .05s
}

.exp-card:hover .exp-card__body p {
    max-height: 90px;
    opacity: 1
}

/* ---------- Route section ---------- */

.route {
    position: relative;
    overflow: hidden
}

.route__track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    margin-top: clamp(40px, 6vw, 72px)
}

.route__line {
    position: absolute;
    top: 26px;
    left: 4%;
    right: 4%;
    height: 2px;
    z-index: 0
}

.route__line svg {
    width: 100%;
    height: 40px;
    overflow: visible
}

.route__stop {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-align: center
}

.route__dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-family: var(--font-d);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    box-shadow: var(--shadow-s);
    transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}

.route__stop:hover .route__dot {
    transform: scale(1.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, .12)
}

.route__stop.start .route__dot {
    background: var(--ink);
    color: var(--gold-bright);
    border-color: var(--ink);
    width: 64px;
    height: 64px;
    font-size: 14px
}

.route__stop b {
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--ink);
    text-transform: uppercase
}

.route__stop small {
    font-size: 11px;
    color: var(--muted)
}

/* ---------- Marquee ---------- */

.marquee {
    border-block: 1px solid var(--line-gold);
    background: var(--ivory);
    overflow: hidden;
    padding-block: clamp(20px, 3vw, 34px)
}

.marquee__inner {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 46s linear infinite
}

.marquee:hover .marquee__inner {
    animation-play-state: paused
}

.marquee__inner span {
    font-family: var(--font-d);
    font-style: italic;
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    color: var(--ink);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 56px;
}

.marquee__inner span::after {
    content: "✦";
    color: var(--gold);
    font-style: normal;
    font-size: .6em
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* ---------- Explore grid + filters ---------- */

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(28px, 4vw, 44px)
}

.filter-btn {
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    transition: all .35s var(--ease);
}

.filter-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px)
}

.filter-btn.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

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

.dest-card {
    position: relative;
    border-radius: var(--r-m);
    overflow: hidden;
    aspect-ratio: 3/3.9;
    isolation: isolate;
    box-shadow: var(--shadow-s);
    transition: box-shadow .5s, transform .5s var(--ease), opacity .5s, scale .5s;
}

.dest-card:hover {
    box-shadow: var(--shadow-l);
    transform: translateY(-6px)
}

.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease)
}

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

.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(188deg, rgba(11, 19, 31, .05) 40%, rgba(11, 19, 31, .8) 96%)
}

.dest-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    z-index: 2;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px
}

.dest-card__body h3 {
    color: #fff;
    font-size: 1.15rem
}

.dest-card__body small {
    display: block;
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px
}

.dest-card__go {
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .3s, transform .4s var(--ease);
}

.dest-card:hover .dest-card__go {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--ink);
    transform: rotate(-45deg)
}

.dest-card.hide {
    display: none
}

.dest-card.pop {
    animation: cardpop .55s var(--ease) both
}

@keyframes cardpop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ---------- Weekend ---------- */

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

.wk-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s, border-color .3s;
}

.wk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
    border-color: var(--line-gold)
}

.wk-card .thumb {
    aspect-ratio: 16/10.5;
    overflow: hidden
}

.wk-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease)
}

.wk-card:hover img {
    transform: scale(1.07)
}

.wk-card .body {
    padding: 18px 20px 20px
}

.wk-card .body .tag {
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan)
}

.wk-card .body h3 {
    margin: 6px 0 4px;
    font-size: 1.12rem
}

.wk-card .body p {
    font-size: 13px;
    color: var(--muted)
}

/* ---------- North India / split visual ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center
}

.split.rev>.split__media {
    order: 2
}

.collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.collage figure {
    border-radius: var(--r-m);
    overflow: hidden;
    box-shadow: var(--shadow-m)
}

.collage figure:first-child {
    grid-row: span 2
}

.collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/3.6;
    transition: transform 1.2s var(--ease)
}

.collage figure:first-child img {
    aspect-ratio: 3/4.9
}

.collage figure:hover img {
    transform: scale(1.06)
}

.split__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 30px;
    border-block: 1px solid var(--line)
}

.split__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 6px;
    font-size: 14px;
    font-weight: 550;
    border-bottom: 1px solid var(--line);
    transition: color .3s, padding-left .35s var(--ease);
}

.split__list a:hover {
    color: var(--cyan);
    padding-left: 14px
}

.split__list a i {
    font-style: normal;
    color: var(--gold);
    font-family: var(--font-d)
}

/* ---------- Themed big cards ---------- */

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.theme-grid .exp-card {
    aspect-ratio: 4/4.9
}

.theme-grid--5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.theme-grid--5 .exp-card:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: auto
}

/* ---------- Services ---------- */

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

.svc-card {
    position: relative;
    border-radius: var(--r-m);
    overflow: hidden;
    aspect-ratio: 3/4.1;
    isolation: isolate;
    transition: transform .5s var(--ease), box-shadow .5s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-l)
}

.svc-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease)
}

.svc-card:hover img {
    transform: scale(1.08)
}

.svc-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, rgba(11, 19, 31, .15) 20%, rgba(11, 19, 31, .86) 88%);
    transition: background .5s
}

.svc-card__body {
    position: absolute;
    inset: auto 12px 12px;
    padding: 18px;
    border-radius: 14px;
    z-index: 2;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .22);
    transition: border-color .4s, box-shadow .4s;
}

.svc-card:hover .svc-card__body {
    border-color: rgba(212, 175, 55, .6);
    box-shadow: 0 0 24px rgba(212, 175, 55, .18)
}

.svc-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.svc-card__num {
    font-family: var(--font-d);
    font-style: italic;
    color: var(--gold-bright);
    font-size: 14px
}

.svc-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .16);
    display: grid;
    place-items: center
}

.svc-card__icon svg {
    width: 17px;
    height: 17px
}

.svc-card__body h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px
}

.svc-card__body p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 12px
}

.svc-card__link {
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-bright);
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.svc-card__link svg {
    transition: transform .4s var(--ease)
}

.svc-card:hover .svc-card__link svg {
    transform: translateX(5px)
}

/* ---------- Packages slider ---------- */

.pk-wrap {
    position: relative
}

.pk-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 6px 26px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pk-track::-webkit-scrollbar {
    display: none
}

.pk-card {
    flex: 0 0 min(400px, 84vw);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s, border-color .3s;
}

.pk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
    border-color: var(--line-gold)
}

.pk-card .thumb {
    position: relative;
    aspect-ratio: 16/9.5;
    overflow: hidden
}

.pk-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease)
}

.pk-card:hover .thumb img {
    transform: scale(1.06)
}

.pk-card .days {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
}

.pk-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.pk-card .route-line {
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cyan)
}

.pk-card h3 {
    font-size: 1.25rem
}

.pk-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pk-card .meta span {
    font-size: 11.5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bone);
    color: var(--text);
    font-weight: 550
}

.pk-card .foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--line)
}

.pk-card .price {
    font-size: 12px;
    color: var(--muted)
}

.pk-card .price b {
    display: block;
    font-family: var(--font-d);
    font-size: 16px;
    color: var(--gold);
    font-weight: 560
}

.pk-nav {
    display: flex;
    gap: 12px
}

.pk-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: all .35s var(--ease);
}

.pk-nav button:hover {
    background: var(--ink);
    color: #fff;
    transform: scale(1.06)
}

/* ---------- Explorer ---------- */

.explorer {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: stretch
}

.explorer__list {
    border-right: 1px solid var(--line)
}

.explorer__list button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: clamp(14px, 1.8vw, 20px) clamp(8px, 1.4vw, 20px) clamp(14px, 1.8vw, 20px) 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-d);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    color: var(--faint);
    transition: color .3s, padding-left .4s var(--ease);
}

.explorer__list button i {
    font-style: normal;
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--gold);
    opacity: 0;
    transition: opacity .3s
}

.explorer__list button.on,
.explorer__list button:hover {
    color: var(--ink);
    padding-left: 12px
}

.explorer__list button.on i,
.explorer__list button:hover i {
    opacity: 1
}

.explorer__panel {
    position: relative;
    border-radius: var(--r-l);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-l)
}

.explorer__panel .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .7s var(--ease), transform 8s linear
}

.explorer__panel .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(11, 19, 31, .05) 30%, rgba(11, 19, 31, .85) 95%)
}

.explorer__info {
    position: absolute;
    inset: auto 0 0 0;
    padding: clamp(24px, 3vw, 40px);
    color: #fff;
    z-index: 2
}

.explorer__info h3 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 10px
}

.explorer__info p {
    color: rgba(255, 255, 255, .82);
    font-size: 14.5px;
    max-width: 52ch;
    margin-bottom: 16px
}

.explorer__hl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px
}

.explorer__hl span {
    font-size: 11.5px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(6px)
}

/* ---------- Travel style tabs ---------- */

.style-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(30px, 4vw, 48px)
}

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

/* ---------- Why us ---------- */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden
}

.why-cell {
    background: var(--white);
    padding: clamp(24px, 2.6vw, 36px);
    transition: background .4s
}

.why-cell:hover {
    background: var(--ivory)
}

.why-cell .num {
    font-family: var(--font-d);
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
    display: block;
    margin-bottom: 16px
}

.why-cell svg {
    width: 26px;
    height: 26px;
    color: var(--cyan);
    margin-bottom: 16px
}

.why-cell h3 {
    font-size: 1.05rem;
    margin-bottom: 8px
}

.why-cell p {
    font-size: 13px;
    color: var(--muted)
}

/* ---------- Process timeline ---------- */

.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: clamp(36px, 5vw, 56px)
}

.process::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    border-top: 2px dashed var(--line-gold)
}

.step {
    position: relative;
    padding: 0 18px;
    text-align: center
}

.step__n {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line-gold);
    display: grid;
    place-items: center;
    font-family: var(--font-d);
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 10px var(--bg);
    transition: transform .4s var(--ease), background .3s, color .3s;
}

.step:hover .step__n {
    transform: scale(1.12);
    background: var(--ink);
    color: var(--gold-bright)
}

.step h3 {
    font-size: 1.02rem;
    margin-bottom: 8px
}

.step p {
    font-size: 13px;
    color: var(--muted)
}

/* ---------- Inspiration ---------- */

.insp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.insp-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s
}

.insp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m)
}

.insp-card .thumb {
    aspect-ratio: 16/9;
    overflow: hidden
}

.insp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease)
}

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

.insp-card .body {
    padding: 22px
}

.insp-card .cat {
    font-size: 10.5px;
    font-weight: 650;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold)
}

.insp-card h3 {
    margin: 8px 0 10px;
    font-size: 1.18rem;
    line-height: 1.25
}

.insp-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 16px
}

/* ---------- Delhi guide ---------- */

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

.guide-card {
    position: relative;
    border-radius: var(--r-m);
    overflow: hidden;
    aspect-ratio: 3/3.4;
    isolation: isolate
}

.guide-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: auto
}

.guide-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease)
}

.guide-card:hover img {
    transform: scale(1.07)
}

.guide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(11, 19, 31, .08) 30%, rgba(11, 19, 31, .78) 95%)
}

.guide-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px;
    z-index: 2;
    color: #fff
}

.guide-card__body h3 {
    color: #fff;
    font-size: 1.1rem
}

.guide-card__body p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
    margin-top: 4px
}

/* ---------- Map ---------- */

.map-sec {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.map-sec h2,
.map-sec h3 {
    color: #fff
}

.map-sec .lead {
    color: rgba(255, 255, 255, .6)
}

.map-wrap {
    position: relative;
    max-width: 760px;
    margin: clamp(30px, 5vw, 50px) auto 0
}

.map-wrap svg {
    width: 100%;
    height: auto;
    display: block
}

.map-india {
    fill: rgba(255, 255, 255, .045);
    stroke: rgba(212, 175, 55, .5);
    stroke-width: 1.4;
    stroke-linejoin: round
}

.marker {
    cursor: pointer
}

.marker circle.core {
    fill: var(--gold-bright)
}

.marker circle.pulse {
    fill: none;
    stroke: var(--gold-bright);
    stroke-width: 1;
    opacity: .7;
    animation: pulse 2.6s infinite
}

.marker.delhi circle.core {
    fill: var(--cyan)
}

.marker.delhi circle.pulse {
    stroke: var(--cyan)
}

.marker text {
    fill: #fff;
    font-family: var(--font-b);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

@keyframes pulse {
    0% {
        r: 6;
        opacity: .8
    }

    100% {
        r: 22;
        opacity: 0
    }
}

.map-route {
    fill: none;
    stroke: rgba(6, 182, 212, .65);
    stroke-width: 1.4;
    stroke-dasharray: 5 7;
    animation: dashmove 3.2s linear infinite
}

@keyframes dashmove {
    to {
        stroke-dashoffset: -48
    }
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 26px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .06em
}

.map-legend i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 840px;
    margin-inline: auto
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 24px 4px;
    font-family: var(--font-d);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    color: var(--ink);
    transition: color .3s;
}

.faq-item button:hover {
    color: var(--cyan)
}

.faq-item .plus {
    width: 34px;
    height: 34px;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform .45s var(--ease), background .3s, color .3s
}

.faq-item.open .plus {
    transform: rotate(45deg);
    background: var(--ink);
    color: #fff
}

.faq-item .ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s var(--ease)
}

.faq-item .ans p {
    padding: 0 4px 26px;
    color: var(--muted);
    font-size: 15px;
    max-width: 62ch
}

/* ---------- Final CTA ---------- */

.final-cta {
    position: relative;
    border-radius: var(--r-l);
    overflow: hidden;
    padding: clamp(56px, 8vw, 110px) clamp(24px, 6vw, 80px);
    color: #fff;
    text-align: center;
    isolation: isolate
}

.final-cta .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05)
}

.final-cta .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 19, 31, .55), rgba(11, 19, 31, .75))
}

.final-cta>* {
    position: relative;
    z-index: 2
}

.final-cta h2 {
    color: #fff;
    margin: 16px auto 18px;
    max-width: 16ch
}

.final-cta p {
    color: rgba(255, 255, 255, .8);
    max-width: 52ch;
    margin: 0 auto 36px
}

.final-cta .eyebrow {
    color: var(--gold-bright);
    justify-content: center
}

.final-cta .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-bright)
}

.final-cta .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
}

/* ---------- Contact ---------- */

.contact {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(32px, 5vw, 72px)
}

.contact__info h3 {
    font-size: 1.35rem;
    margin-bottom: 26px
}

.c-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.c-row .ic {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 14px;
    background: var(--cyan-tint);
    color: var(--cyan);
    display: grid;
    place-items: center
}

.c-row .ic svg {
    width: 20px;
    height: 20px
}

.c-row b {
    display: block;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.c-row a,
.c-row span.val {
    font-size: 15.5px;
    font-weight: 550;
    color: var(--ink)
}

.c-row a:hover {
    color: var(--cyan)
}

.enquiry {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    padding: clamp(24px, 3.4vw, 44px);
    box-shadow: var(--shadow-m)
}

.enquiry__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.enquiry .full {
    grid-column: 1/-1
}

.field textarea {
    appearance: none;
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-s);
    border: 1px solid var(--line);
    background: #fff;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    resize: vertical;
    min-height: 110px;
    transition: border-color .3s, box-shadow .3s
}

.field textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, .12)
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px
}

/* ---------- Newsletter ---------- */

.newsletter {
    border-block: 1px solid var(--line-gold);
    background: var(--ivory)
}

.newsletter .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: clamp(36px, 5vw, 56px)
}

.newsletter h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    max-width: 20ch
}

.newsletter form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.newsletter input {
    padding: 15px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    min-width: min(320px, 72vw);
    font-family: inherit;
    font-size: 14.5px
}

.newsletter input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 168, 181, .12)
}

/* ---------- Footer ---------- */

.footer {
    background: var(--ink);
    color: #94A3B8
}

.footer .container {
    padding-block: clamp(56px, 7vw, 88px) 0
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: clamp(28px, 4vw, 56px)
}

.brand--footer {
    display: inline-block;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: var(--r-s);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.brand--footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.brand-logo-img--footer {
    height: 48px;
    max-width: 180px;
}

.footer .brand b {
    color: #fff;
    font-size: 24px
}

.footer .brand span {
    color: var(--gold-bright)
}

.footer p {
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 34ch;
    margin-top: 16px
}

.footer h4 {
    color: #fff;
    font-family: var(--font-b);
    font-size: 12px;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.footer li {
    margin-bottom: 11px
}

.footer a {
    font-size: 14px;
    transition: color .3s, padding-left .3s var(--ease)
}

.footer a:hover {
    color: var(--gold-bright);
    padding-left: 6px
}

.footer__contact li {
    display: flex;
    gap: 12px;
    font-size: 13.5px;
    align-items: flex-start
}

.footer__contact svg {
    width: 15px;
    height: 15px;
    flex: none;
    margin-top: 3px;
    color: var(--gold-bright)
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: clamp(40px, 5vw, 64px)
}

.footer__bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding-block: 24px;
    font-size: 12.5px
}

.footer__bottom nav {
    display: flex;
    gap: 22px
}

.footer__watermark {
    font-family: var(--font-d);
    font-size: clamp(3.4rem, 11vw, 10rem);
    line-height: .9;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .09);
    white-space: nowrap;
    overflow: hidden;
    padding-top: clamp(28px, 4vw, 48px);
    user-select: none;
}

/* ---------- Floating ---------- */

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 300;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 34px -8px rgba(37, 211, 102, .6);
    transition: transform .35s var(--ease);
}

.float-wa:hover {
    transform: scale(1.1) rotate(6deg)
}

.float-wa svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.float-call {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 300;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ink);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-m);
    transition: transform .35s var(--ease);
}

.float-call:hover {
    transform: scale(1.1)
}

.float-call svg {
    width: 22px;
    height: 22px;
    stroke: #fff
}

.backtop {
    position: fixed;
    right: 30px;
    bottom: 162px;
    z-index: 300;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all .4s var(--ease);
    box-shadow: var(--shadow-s);
}

.backtop.show {
    opacity: 1;
    pointer-events: auto;
    transform: none
}

.backtop:hover {
    background: var(--ink);
    color: #fff
}

/* ---------- Reveal helpers ---------- */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal-d1 {
    transition-delay: .08s
}

.reveal-d2 {
    transition-delay: .16s
}

.reveal-d3 {
    transition-delay: .24s
}

.reveal-d4 {
    transition-delay: .32s
}

.reveal-d5 {
    transition-delay: .4s
}

/* ---------- Responsive ---------- */

@media (max-width:1180px) {

    .dest-grid,
    .svc-grid,
    .wk-grid,
    .why-grid,
    .style-results {
        grid-template-columns: repeat(3, 1fr)
    }

    .guide-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .planner__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:1024px) {
    .nav {
        display: none
    }

    .burger {
        display: flex
    }

    .header-cta .btn {
        display: none
    }

    .gateway,
    .split,
    .contact,
    .explorer {
        grid-template-columns: 1fr
    }

    .split.rev>.split__media {
        order: 0
    }

    .explorer__list {
        border-right: none;
        border-bottom: 1px solid var(--line);
        display: flex;
        overflow-x: auto;
        scrollbar-width: none
    }

    .explorer__list button::-webkit-scrollbar {
        display: none
    }

    .explorer__list button {
        flex: none;
        border-bottom: none;
        border-right: 1px solid var(--line);
        padding-right: 20px;
        font-size: 1.05rem
    }

    .explorer__panel {
        min-height: 420px
    }

    .exp-grid,
    .theme-grid,
    .theme-grid--5,
    .insp {
        grid-template-columns: repeat(2, 1fr)
    }

    .theme-grid--5 .exp-card:nth-child(1) {
        grid-column: span 2
    }

    .process {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 520px;
        margin-inline: auto
    }

    .process::before {
        left: 30px;
        right: auto;
        top: 5%;
        bottom: 5%;
        border-top: none;
        border-left: 2px dashed var(--line-gold)
    }

    .step {
        text-align: left;
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 0
    }

    .step__n {
        margin: 0;
        box-shadow: 0 0 0 10px var(--bg)
    }

    .route__track {
        flex-wrap: wrap;
        gap: 26px 8px
    }

    .route__line {
        display: none
    }

    .route__stop {
        flex: 1 1 30%
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:768px) {
    .utility .u-left span.hide-m {
        display: none
    }

    .dest-grid,
    .svc-grid,
    .wk-grid,
    .why-grid,
    .style-results,
    .guide-grid,
    .planner__grid,
    .enquiry__grid {
        grid-template-columns: 1fr 1fr
    }

    .planner__grid .span2 {
        grid-column: 1/-1
    }

    .hero__ui .container {
        justify-content: center
    }

    .hero__nav {
        display: none
    }

    .chapter {
        font-size: 4.2rem
    }

    .gateway__badge {
        left: 12px;
        bottom: 12px
    }

    .guide-card:first-child {
        grid-column: span 2
    }
}

/* ==========================================================================
   INTERNATIONAL SPECIALISED PACKAGES & ABOUT SECTION
   ========================================================================== */

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

.intl-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-s);
    transition: transform .5s var(--ease), box-shadow .5s, border-color .3s;
}

.intl-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-l);
    border-color: var(--line-gold);
}

.intl-card .thumb {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--ink);
}

.intl-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.intl-card:hover .thumb img {
    transform: scale(1.08);
}

.intl-card .thumb .days {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 19, 31, .85);
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.intl-card .thumb .tag-float {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--cyan);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 168, 181, .35);
}

.intl-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.intl-card .route-line {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}

.intl-card h3 {
    font-size: 1.28rem;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
}

.intl-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.intl-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    margin-top: auto;
}

.intl-card .meta span {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--bone);
    padding: 4px 9px;
    border-radius: 6px;
}

.intl-card .foot {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.intl-card .foot .price {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.intl-card .foot .price b {
    display: block;
    font-size: 13px;
    color: var(--emerald);
    letter-spacing: normal;
    text-transform: none;
}

/* About Us Section Styles */
.about-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.about-feat-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    padding: 16px;
    box-shadow: var(--shadow-s);
}

.about-feat-item b {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 4px;
}

.about-feat-item span {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--line-gold);
    border-radius: var(--r-m);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-s);
}

.about-stat-card .num {
    font-family: var(--font-d);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-card .lbl {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .intl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .intl-grid {
        grid-template-columns: 1fr;
    }
    .about-features,
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INNER PAGES — LUXURY CORPORATE SUITE STYLES
   ========================================================================== */

.page-hero {
    position: relative;
    padding: clamp(140px, 18vw, 190px) 0 clamp(60px, 9vw, 96px);
    background-color: var(--ink);
    border-bottom: 1px solid var(--line-gold);
    overflow: hidden;
    color: #FFFFFF;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s var(--ease);
}

.page-hero:hover .page-hero__bg {
    transform: scale(1.07);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 19, 31, 0.86) 0%, rgba(11, 19, 31, 0.62) 50%, rgba(11, 19, 31, 0.88) 100%);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.breadcrumb a {
    color: #FFFFFF;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold-bright);
}

.breadcrumb .sep {
    color: var(--gold-bright);
    font-size: 11px;
}

.page-hero .eyebrow {
    color: var(--gold-bright);
    letter-spacing: .18em;
}

.page-hero .eyebrow::before {
    background: var(--gold-bright);
}

.page-hero__title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.12;
    margin-bottom: 16px;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero__title .italic {
    color: var(--gold-bright);
}

.page-hero__desc {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 65ch;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* Detail Cards & Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

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

/* Rich Tour Package Card */
.pkg-card-rich {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-s);
    transition: transform .45s var(--ease), box-shadow .45s, border-color .3s;
}

.pkg-card-rich:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-l);
    border-color: var(--line-gold);
}

.pkg-card-rich .thumb {
    position: relative;
    aspect-ratio: 16/10.5;
    overflow: hidden;
    background: var(--ink);
}

.pkg-card-rich .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.pkg-card-rich:hover .thumb img {
    transform: scale(1.08);
}

.pkg-card-rich .thumb .badge-days {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 19, 31, .88);
    color: var(--gold-bright);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.pkg-card-rich .thumb .badge-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--cyan);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 168, 181, .35);
}

.pkg-card-rich .body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-card-rich .route {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
}

.pkg-card-rich h3 {
    font-size: 1.32rem;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
}

.pkg-card-rich .desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pkg-card-rich .highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.pkg-card-rich .highlights-list li {
    font-size: 12.5px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-card-rich .highlights-list li::before {
    content: "✓";
    color: var(--emerald);
    font-weight: 700;
    font-size: 12px;
}

.pkg-card-rich .foot {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pkg-card-rich .price-box span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
}

.pkg-card-rich .price-box b {
    font-size: 13.5px;
    color: var(--emerald);
}

/* Day by Day Itinerary Accordion */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.itinerary-day {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    padding: 18px 22px;
    box-shadow: var(--shadow-s);
}

.itinerary-day .day-badge {
    display: inline-block;
    background: var(--cyan-tint);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.itinerary-day h4 {
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.itinerary-day p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* Destination Rich Card */
.dest-card-full {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    transition: transform .45s var(--ease), box-shadow .45s, border-color .3s;
}

.dest-card-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-l);
    border-color: var(--line-gold);
}

.dest-card-full .thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.dest-card-full .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.dest-card-full:hover .thumb img {
    transform: scale(1.07);
}

.dest-card-full .body {
    padding: 24px;
}

.dest-card-full .badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}

.dest-card-full h3 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.dest-card-full p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.dest-card-full .meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.dest-card-full .meta-pills span {
    background: var(--bone);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Service Box Full */
.service-box-full {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    padding: 32px 28px;
    box-shadow: var(--shadow-s);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
}

.service-box-full:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
    border-color: var(--line-gold);
}

.service-box-full .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--r-s);
    background: var(--cyan-tint);
    color: var(--cyan);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.service-box-full .icon-wrap svg {
    width: 26px;
    height: 26px;
}

.service-box-full h3 {
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.service-box-full p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-box-full .feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-box-full .feature-bullets li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-box-full .feature-bullets li::before {
    content: "✦";
    color: var(--gold);
    font-size: 10px;
}

/* FAQ Block */
.faq-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-s);
}

.faq-box h4 {
    font-size: 1.12rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.faq-box p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding-top: 110px;
    }
}

@media (max-width:560px) {

    .dest-grid,
    .svc-grid,
    .wk-grid,
    .exp-grid,
    .theme-grid,
    .theme-grid--5,
    .insp,
    .why-grid,
    .style-results,
    .guide-grid,
    .enquiry__grid {
        grid-template-columns: 1fr
    }

    .theme-grid--5 .exp-card:nth-child(1) {
        grid-column: span 1
    }

    .guide-card:first-child {
        grid-column: span 1;
        aspect-ratio: 3/3.4
    }

    .planner__grid {
        grid-template-columns: 1fr
    }

    .hero__content {
        padding-bottom: 150px
    }

    .float-call {
        bottom: 92px
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start
    }

    .route__stop {
        flex: 1 1 44%
    }
}

/* ============================================================
   ABOUT PAGE SPECIFIC LUXURY COMPONENTS
   ============================================================ */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.about-brand-card {
    background: var(--white);
    border: 1px solid var(--line-gold);
    border-radius: var(--r-l);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow-l);
    position: relative;
    overflow: hidden;
}

.about-brand-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold-bright));
}

.about-brand-logo {
    max-width: 240px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.06));
}

.about-tagline-pill {
    display: inline-block;
    background: var(--bone);
    border: 1px solid var(--line-gold);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.quote-highlight-box {
    background: linear-gradient(135deg, rgba(230, 248, 250, 0.6) 0%, rgba(246, 244, 239, 0.9) 100%);
    border-left: 4px solid var(--cyan);
    border-radius: 0 var(--r-s) var(--r-s) 0;
    padding: 20px 24px;
    margin: 22px 0;
    font-style: italic;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.specialize-card-lux {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
    display: flex;
    flex-direction: column;
}

.specialize-card-lux:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-l);
    border-color: var(--line-gold);
}

.specialize-card-lux .thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--ink);
}

.specialize-card-lux .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.specialize-card-lux:hover .thumb img {
    transform: scale(1.08);
}

.specialize-card-lux .body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.specialize-card-lux h3 {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.specialize-card-lux p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.specialize-card-lux .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: auto;
}

.why-choose-lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.why-choose-card-lux {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    padding: 28px 24px;
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
    position: relative;
}

.why-choose-card-lux:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-m);
    border-color: var(--cyan);
}

.why-choose-card-lux .num-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 19, 31, 0.18);
    letter-spacing: .08em;
}

.why-choose-card-lux .icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--cyan-tint);
    color: var(--cyan);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.why-choose-card-lux .icon-circle svg {
    width: 22px;
    height: 22px;
}

.why-choose-card-lux h3 {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.why-choose-card-lux p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================================
   PACKAGE DETAIL PAGES & POLICY STYLES
   ============================================================ */
.package-detail-layout {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 36px;
    align-items: start;
}

.package-tab-nav {
    display: flex;
    gap: 12px;
    background: var(--bone);
    padding: 6px;
    border-radius: var(--r-m);
    border: 1px solid var(--line);
    margin-bottom: 24px;
    overflow-x: auto;
}

.package-tab-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--r-s);
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
    white-space: nowrap;
}

.package-tab-btn.active {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 19, 31, .2);
}

.itinerary-day-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-s);
    transition: border-color .3s, transform .3s;
}

.itinerary-day-card:hover {
    border-color: var(--line-gold);
    transform: translateY(-2px);
}

.itinerary-day-card .day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.itinerary-day-card .day-num {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
}

.itinerary-day-card .day-title {
    font-size: 1.18rem;
    color: var(--ink);
    margin: 0;
    font-weight: 700;
}

.itinerary-day-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    margin: 0;
}

.itinerary-sub-box {
    background: var(--bone);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    margin-top: 12px;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.package-sidebar-box {
    background: var(--white);
    border: 1px solid var(--line-gold);
    border-radius: var(--r-l);
    padding: 30px 26px;
    box-shadow: var(--shadow-m);
    position: sticky;
    top: 90px;
}

.package-sidebar-price {
    background: var(--bone);
    padding: 16px 20px;
    border-radius: var(--r-s);
    margin-bottom: 20px;
    border: 1px solid var(--line);
}

.package-sidebar-price .lbl {
    font-size: 11.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.package-sidebar-price .val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--emerald);
    margin-top: 4px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.inclusions-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    padding: 18px 20px;
}

.inclusions-card h4 {
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusions-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.inclusions-card li {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Policy Table & Bank Details */
.policy-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--r-m);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-s);
    margin: 20px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.policy-table th {
    background: var(--ink);
    color: var(--gold-bright);
    padding: 14px 20px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
}

.policy-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover td {
    background: var(--bone);
}

.bank-card-lux {
    background: linear-gradient(135deg, var(--ink) 0%, #152538 100%);
    border: 1px solid var(--line-gold);
    border-radius: var(--r-l);
    padding: 32px 28px;
    color: #FFFFFF;
    box-shadow: var(--shadow-l);
    position: relative;
    overflow: hidden;
}

.bank-card-lux::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold-bright));
}

.bank-card-lux h3 {
    color: var(--gold-bright);
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.bank-grid-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    border-radius: var(--r-s);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-grid-item small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-bright);
    margin-bottom: 4px;
}

.bank-grid-item b {
    font-size: 14.5px;
    color: #FFFFFF;
    font-family: var(--font-sans);
    letter-spacing: .02em;
}

@media (max-width: 960px) {
    .package-detail-layout {
        grid-template-columns: 1fr;
    }
    .package-sidebar-box {
        position: static;
    }
    .bank-grid-details {
        grid-template-columns: 1fr;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

/* Package Gallery Showcase */
.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.package-gallery-item {
    position: relative;
    border-radius: var(--r-m);
    overflow: hidden;
    height: 175px;
    box-shadow: var(--shadow-s);
    border: 1px solid var(--line);
    transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

.package-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
}

.package-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.package-gallery-item:hover img {
    transform: scale(1.06);
}

.package-gallery-item .cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 10px;
    background: linear-gradient(0deg, rgba(11, 19, 31, 0.88) 0%, transparent 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}

/* Golden Triangle Feature Showcase */
.gt-feature-wrap {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.gt-collage-multi {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.gt-main-img {
    width: 88%;
    height: 380px;
    border-radius: var(--r-l);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    border: 1px solid var(--line);
    position: relative;
}

.gt-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.gt-collage-multi:hover .gt-main-img img {
    transform: scale(1.04);
}

.gt-sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 220px;
    border-radius: var(--r-m);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid #FFFFFF;
    transition: transform 0.4s var(--ease);
}

.gt-collage-multi:hover .gt-sub-img {
    transform: translateY(-8px) scale(1.02);
}

.gt-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gt-floating-badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--ink);
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: var(--r-s);
    box-shadow: var(--shadow-l);
    border-left: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
    animation: floatSlow 4s ease-in-out infinite;
}

.gt-floating-badge b {
    color: var(--gold-bright);
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.gt-floating-badge span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
}

.gt-circuit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 146, 20, 0.12);
    color: var(--gold);
    border: 1px solid rgba(198, 146, 20, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gt-route-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 18px 0 24px;
}

.gt-route-pill {
    background: #FFFFFF;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: var(--r-s);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-xs);
}

.gt-route-pill i {
    color: var(--gold);
    font-style: normal;
    font-weight: 800;
}

.gt-feature-card-box {
    background: #FFFFFF;
    border: 1px solid var(--line-gold);
    border-radius: var(--r-m);
    padding: 20px 22px;
    margin: 20px 0 26px;
    box-shadow: var(--shadow-s);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gt-feature-mini-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-feature-mini-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    font-weight: 600;
}

.gt-feature-mini-item b {
    font-size: 13.5px;
    color: var(--ink);
}

@media (max-width: 960px) {
    .gt-feature-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .gt-main-img {
        width: 100%;
        height: 280px;
    }
    .gt-sub-img {
        width: 60%;
        height: 170px;
    }
    .gt-floating-badge {
        left: 12px;
        top: 12px;
    }
    .gt-feature-card-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}



/* ==========================================================================
   26 · CLIENT REVIEWS & TESTIMONIALS SLIDER
   ========================================================================== */

.reviews-section {
    position: relative;
    background: linear-gradient(180deg, var(--ivory) 0%, #FFFFFF 100%);
    overflow: hidden;
}

.rev-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.rev-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-s);
}

.rev-nav button:hover {
    background: var(--ink);
    color: var(--gold-bright);
    border-color: var(--ink);
    transform: scale(1.06);
}

.reviews-slider-wrap {
    position: relative;
    margin-top: 32px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 4px 24px 4px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-m);
    border-color: var(--line-gold);
}

.review-card:hover::before {
    opacity: 1;
}

.review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #F59E0B;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    background: var(--cyan-tint);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: fit-content;
}

.review-card__quote {
    position: relative;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-card__quote-mark {
    position: absolute;
    top: -12px;
    right: 0;
    font-family: var(--font-d);
    font-size: 54px;
    line-height: 1;
    color: rgba(197, 160, 89, 0.18);
    pointer-events: none;
    font-style: italic;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.72;
    color: var(--text);
    font-style: normal;
    white-space: pre-line;
}

.review-card__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.review-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    background: var(--bone);
    padding: 3px 8px;
    border-radius: 4px;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.review-avatar.avatar-gold {
    background: linear-gradient(135deg, #D4AF37, #92400E);
}

.review-avatar.avatar-cyan {
    background: linear-gradient(135deg, #00A8B5, #0F766E);
}

.review-avatar.avatar-rose {
    background: linear-gradient(135deg, #EC4899, #831843);
}

.review-avatar.avatar-emerald {
    background: linear-gradient(135deg, #059669, #065F46);
}

.review-author__info b {
    display: block;
    font-size: 15px;
    color: var(--ink);
    font-weight: 700;
}

.review-author__info span {
    font-size: 12.5px;
    color: var(--muted);
}

.reviews-trust-banner {
    margin-top: 36px;
    padding: 24px 32px;
    background: var(--white);
    border: 1px solid var(--line-gold);
    border-radius: var(--r-m);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow-s);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gold-tint);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item__text b {
    display: block;
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
}

.trust-item__text span {
    font-size: 12px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
    .reviews-trust-banner {
        justify-content: flex-start;
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .review-card {
        flex: 0 0 90%;
        min-width: 270px;
        padding: 24px 20px;
    }
    .reviews-trust-banner {
        padding: 20px 16px;
    }
    .trust-item {
        width: 100%;
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .hero__slide.active .hero__img {
        animation: none;
        transform: none
    }

    .hero__slide.active .hero__title .line>span {
        animation: none;
        transform: none
    }

    .hero__slide.active .hero__desc,
    .hero__slide.active .hero__ctas {
        animation: none;
        opacity: 1;
        transform: none
    }

    .marquee__inner {
        animation: none
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}