/* =========================================================
   Discover Kashi - Public Site Stylesheet
   ========================================================= */

:root {
    --navy: #16264f;
    --navy-dark: #0c1836;
    --navy-deep: #08183a;
    --navy-soft: #1e3a72;
    --gold: #d4af37;
    --gold-light: #e8ca6e;
    --cream: #faf8f5;
    --alt-bg: #eef1f8;
    --topbar-bg: #f2f6ffee;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --text-light: #f8f5f0;
    --border-light: #e5e9f2;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 40px rgba(15, 30, 70, 0.08);
    --shadow-card: 0 15px 45px rgba(15, 30, 70, 0.12);
    --header-h: 116px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 15px; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--navy); margin: 0; font-weight: 700; }
p { margin: 0; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

/* ---------- Utility ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--alt-bg); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deep); color: var(--text-light); }
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    color: var(--navy);
}
.section-navy .section-title, .section-navy .section-eyebrow { color: var(--text-light); }
.section-navy .section-eyebrow { color: var(--gold); }
.section-sub {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}
.section-navy .section-sub { color: rgba(248,245,240,0.75); }
.dev-diwali-light { background: linear-gradient(160deg, #fdf6e8 0%, #f7e7bf 100%); }

.trust-bar { background: #fff; border-bottom: 1px solid var(--border-light); padding: 28px 0; position: relative; z-index: 2; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-badge { display: flex; align-items: center; gap: 13px; }
.trust-badge-icon {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: var(--alt-bg); color: var(--navy); display: flex; align-items: center; justify-content: center;
}
.trust-badge-gold .trust-badge-icon { background: rgba(212,175,55,0.14); color: #b8860b; }
.trust-badge strong { display: block; font-size: 13.5px; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.trust-badge span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; } }
@media (max-width: 560px) { .trust-bar-grid { grid-template-columns: 1fr; } .trust-bar { padding: 22px 0; } }

.divider-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0;
}
.divider-mini span.line { width: 48px; height: 1px; background: var(--gold); }
.divider-mini span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.left-align .divider-mini { justify-content: flex-start; }

.divider-img { display: block; margin: 0 auto; width: 140px; height: auto; opacity: 0.9; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(22,38,79,0.35); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: var(--navy-dark); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 10px; }
.btn-round-icon {
    width: 52px; height: 52px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.5); color: #fff;
    transition: all 0.3s ease;
}
.btn-round-icon:hover { background: #fff; color: var(--navy); }

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--alt-bg);
    color: var(--navy);
}
.badge-success { background: #dcf5e6; color: #15803d; }
.badge-muted { background: #eef0f4; color: #64748b; }
.badge-new { background: #fde7e7; color: #b91c1c; }
.badge-info { background: #dbeafe; color: #1d4ed8; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader-ring-wrap { position: relative; width: 112px; height: 112px; display: flex; align-items: center; justify-content: center; }
.preloader-ring {
    position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent;
    border-top-color: var(--gold); border-right-color: var(--gold);
    animation: preloader-spin 1.3s linear infinite;
}
.preloader-ring-alt {
    inset: 12px; border-top-color: transparent; border-right-color: transparent;
    border-bottom-color: rgba(232,202,110,0.55); border-left-color: rgba(232,202,110,0.55);
    animation: preloader-spin-reverse 1.9s linear infinite;
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }
@keyframes preloader-spin-reverse { to { transform: rotate(-360deg); } }
.preloader-mark {
    width: 76px; height: 76px; border-radius: 50%; position: relative; z-index: 1;
    animation: spin-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.08);
}
.preloader-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.preloader-brand {
    font-family: var(--font-serif); color: var(--gold-light); font-size: 12px; letter-spacing: 0.34em;
    text-transform: uppercase; animation: preloader-fade 2s ease-in-out infinite;
}
@keyframes preloader-fade { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.95; } }
@keyframes spin-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(180deg); }
}

/* ---------- Payment checkout states ---------- */
.pay-btn.pay-success,
.pay-success {
    background: #1f7a3d !important;
    color: #ffffff !important;
    border-color: #1f7a3d !important;
    pointer-events: none;
    animation: pay-success-pop 0.4s ease;
}
@keyframes pay-success-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--topbar-bg);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #d1dbed;
    color: var(--navy);
    position: relative;
    z-index: 60;
}
.topbar-inner {
    max-width: 1360px; margin: 0 auto; padding: 8px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px;
}
.topbar-msg { font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
.topbar-right { display: flex; align-items: center; gap: 22px; font-weight: 600; }
.topbar-link { display: inline-flex; align-items: center; gap: 6px; }
.topbar-link span { white-space: nowrap; }
.topbar-link:hover { color: var(--gold); }
.topbar-sep { width: 1px; height: 12px; background: var(--navy); opacity: 0.3; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
    width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--navy); opacity: 0.75;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.topbar-social a:hover { opacity: 1; background: var(--navy); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 55;
    background: #fff;
    box-shadow: 0 2px 18px rgba(15,30,70,0.06);
}
.nav-inner {
    max-width: 1360px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-text strong { font-family: var(--font-serif); font-size: 19px; color: var(--navy); letter-spacing: 0.02em; }
.brand-text small { font-size: 10px; letter-spacing: 0.18em; color: var(--gold); font-weight: 700; }

.main-nav > ul { display: flex; align-items: center; gap: 22px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    color: var(--navy); padding: 10px 0; display: inline-flex; align-items: center; gap: 4px;
    position: relative; white-space: nowrap;
}
.main-nav > ul > li > a::after {
    content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 2px; background: var(--gold);
    transition: width 0.25s ease;
}
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { width: 100%; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--gold); }
.main-nav .chev { transition: transform 0.25s ease; }
.has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.25s ease; border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block; padding: 9px 14px; font-size: 13px; font-weight: 500; color: var(--text-dark);
    border-radius: 6px;
}
.dropdown li a:hover { background: var(--alt-bg); color: var(--navy); padding-left: 18px; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: inline-flex; }
.nav-icon-btn {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-light);
    display: inline-flex; align-items: center; justify-content: center; color: var(--navy);
    transition: all 0.25s ease; flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.hamburger {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: min(340px, 88vw); height: 100%; z-index: 200;
    background: var(--navy-deep); color: #fff; transition: right 0.4s ease; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-backdrop {
    position: fixed; inset: 0; background: rgba(8,16,40,0.6); z-index: 190;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { padding: 26px 24px 40px; }
.mobile-menu-close { background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 38px; height: 38px; border-radius: 50%; font-size: 20px; margin-bottom: 24px; }
.mobile-nav-list > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-list > li > a { display: block; padding: 14px 4px; font-weight: 600; letter-spacing: 0.02em; }
.mobile-toggle { width: 100%; background: none; border: none; color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; font-weight: 600; font-size: 15px; }
.mobile-toggle svg { transition: transform 0.25s ease; color: var(--gold); }
.mobile-has-children.open .mobile-toggle svg { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 12px; }
.mobile-has-children.open .mobile-submenu { max-height: 300px; }
.mobile-submenu li a { display: block; padding: 8px 4px; font-size: 13px; color: rgba(255,255,255,0.7); }
.mobile-submenu li a:hover { color: var(--gold); }
.mobile-cta { display: flex; margin-top: 24px; }

body.menu-open { overflow: hidden; }

/* ---------- Hero: Homepage (full height) ---------- */
.hero-home {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background-size: cover; background-position: center; background-attachment: fixed;
    overflow: hidden;
}
.hero-home .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.42) 35%, rgba(255,255,255,0.12) 62%, rgba(255,255,255,0) 80%);
}
.hero-home-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    background-attachment: fixed; opacity: 0; transition: opacity 1.8s ease;
}
.hero-home-slide.is-active { opacity: 1; }
.hero-carousel-caption {
    position: absolute; z-index: 3; left: 24px; bottom: 108px; max-width: 280px;
    display: flex; flex-direction: column; gap: 2px;
}
.hero-carousel-caption strong { font-family: var(--font-serif); font-size: 15px; color: var(--navy); }
.hero-carousel-caption strong:empty, .hero-carousel-caption span:empty { display: none; }
.hero-carousel-caption span { font-size: 12px; color: var(--text-muted); }
.hero-carousel-dots { position: absolute; z-index: 3; left: 24px; bottom: 84px; display: flex; gap: 8px; }
.hero-carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(22,38,79,0.5);
    background: rgba(255,255,255,0.7); padding: 0; cursor: pointer; transition: all 0.3s ease;
}
.hero-carousel-dots button.is-active { background: var(--navy); border-color: var(--navy); width: 22px; border-radius: 5px; }
.hero-home-inner {
    position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; padding: 140px 24px 80px;
    width: 100%;
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center;
}
.hero-eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.9); color: var(--navy); font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 20px 9px 16px; border-radius: 999px;
    margin-bottom: 24px; box-shadow: 0 6px 20px rgba(8,16,40,0.1);
}
.hero-eyebrow-pill .pill-dot { color: var(--gold); flex-shrink: 0; }
.hero-home-sub-label { color: var(--navy); font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; display: block; }
.hero-home h1 {
    font-size: clamp(56px, 9vw, 108px); color: var(--navy); line-height: 0.95; letter-spacing: 0.01em;
    text-shadow: 0 2px 30px rgba(255,255,255,0.5);
}
.hero-home .divider-img { margin: 20px 0; opacity: 0.9; }
.hero-home .hero-tagline { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--navy); margin-bottom: 18px; }
.hero-home p.hero-desc { color: #3a4356; font-size: 15.5px; max-width: 520px; line-height: 1.85; margin-bottom: 34px; }
.hero-home .hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-play { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-play .btn-round-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.85); border-color: var(--navy); color: var(--navy); }
.hero-play:hover .btn-round-icon { background: var(--navy); color: #fff; }

.hero-side-card-wrap { position: relative; justify-self: end; max-width: 320px; width: 100%; }
.hsc-blur-orb {
    position: absolute; bottom: -30px; right: -30px; width: 110px; height: 110px; border-radius: 50%;
    background: rgba(90,100,120,0.45); filter: blur(18px); z-index: 1;
}
.hero-side-card {
    background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow-card); position: relative; z-index: 2;
}
.hsc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.hsc-badge {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: var(--alt-bg); color: var(--navy); display: flex; align-items: center; justify-content: center;
}
.hero-side-card p.hsc-eyebrow { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; line-height: 1.5; }
.hero-side-card h4 { font-size: 18px; margin-bottom: 16px; }
.hsc-feature {
    display: flex; gap: 12px; margin-bottom: 12px; background: var(--alt-bg); border-radius: var(--radius-sm);
    padding: 14px 16px; align-items: flex-start;
}
.hsc-feature:last-child { margin-bottom: 0; }
.hsc-feature-icon {
    width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--navy); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; margin-top: 1px; box-shadow: 0 2px 6px rgba(8,16,40,0.1);
}
.hsc-feature strong { display: block; font-size: 13.5px; color: var(--navy); font-family: var(--font-sans); font-weight: 700; margin-bottom: 3px; }
.hsc-feature span { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.hsc-blur-orb-gold { background: rgba(212,175,55,0.55); }
.hsc-badge-flame { background: rgba(212,175,55,0.16); color: #b8860b; }
.hsc-countdown {
    display: flex; align-items: stretch; margin-bottom: 12px; padding: 12px 4px;
    background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(212,175,55,0.03));
    border: 1px solid rgba(212,175,55,0.3); border-radius: var(--radius-sm);
}
.hsc-cd-unit { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; position: relative; }
.hsc-cd-unit + .hsc-cd-unit::before { content: ''; position: absolute; left: 0; top: 3px; bottom: 3px; width: 1px; background: rgba(212,175,55,0.3); }
.hsc-cd-num {
    font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: #b8860b; line-height: 1;
    display: inline-block; min-width: 1.6em;
}
.hsc-cd-num.is-ticking { animation: hsc-cd-pulse 0.5s ease; }
.hsc-cd-label { font-size: 9px; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

@keyframes hsc-cd-pulse {
    0% { transform: scale(1); opacity: 1; }
    35% { transform: scale(1.28); opacity: 0.55; color: var(--gold); }
    100% { transform: scale(1); opacity: 1; }
}
.hsc-feature-gold { background: rgba(212,175,55,0.09); }
.hsc-feature-icon-gold { color: #b8860b; }
.hsc-cta {
    display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px;
    font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
    background: var(--alt-bg); padding: 11px 16px; border-radius: 999px; transition: all 0.25s ease;
}
.hsc-cta svg { transition: transform 0.25s ease; }
.hsc-cta:hover { background: var(--gold); color: var(--navy-dark); }
.hsc-cta:hover svg { transform: translateX(3px); }

.hero-scroll-cue {
    position: absolute; bottom: 34px; left: 0; right: 0; z-index: 2;
    max-width: 1360px; margin: 0 auto; padding: 0 24px;
    color: #4a5568; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
    display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.hero-scroll-cue .line { width: 40px; height: 1px; background: rgba(22,38,79,0.4); }
@keyframes scrollcue { 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; } }

/* ---------- Hero: inner pages ---------- */
.page-hero {
    position: relative; min-height: 420px; display: flex; align-items: center;
    background-size: cover; background-position: center;
    padding: 150px 0 90px;
}
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,16,40,0.82) 20%, rgba(8,16,40,0.45) 75%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; padding: 0 24px; width: 100%; }
.page-hero .section-eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #fff; font-size: clamp(38px, 6vw, 64px); line-height: 1.05; }
.page-hero .divider-img { margin: 16px 0; filter: brightness(0) invert(1); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 560px; font-size: 15px; line-height: 1.8; margin-top: 14px; }
.page-hero.hero-navy-solid { background-color: var(--navy-deep); }
.page-hero-bg-layer {
    position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-bg-layer.tint-dusk { filter: hue-rotate(190deg) saturate(1.5) brightness(0.7) contrast(1.05); }
.page-hero.hero-deep .hero-overlay { background: linear-gradient(100deg, rgba(8,16,40,0.94) 25%, rgba(8,16,40,0.8) 100%); }
.page-hero.hero-deep h1, .page-hero.hero-deep p { color: #fff; }
.page-hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Back button (detail page heroes) ---------- */
.back-btn {
    position: relative; z-index: 6; margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px 9px 13px;
    color: #fff; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; transition: all 0.3s ease;
}
.back-btn:hover { background: rgba(255, 255, 255, 0.28); border-color: rgba(255, 255, 255, 0.6); }
.back-btn:active { transform: scale(0.96); }
.back-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.back-btn svg { flex: 0 0 auto; }
.page-hero-inner { position: relative; }

.breadcrumb { font-size: 12.5px; color: var(--text-muted); }
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb .sep { margin: 0 6px; }
.page-hero .breadcrumb { max-width: min(100%, 760px); line-height: 1.55; overflow-wrap: anywhere; }

/* Floating panel that overlaps hero bottom edge (search/filter bars) */
.hero-overlap-panel {
    position: relative; z-index: 5; background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); margin: -64px auto 0; max-width: 1200px; padding: 30px;
}

/* Hero split layout (hero copy + a form/card sidebar). Mobile-first: stacks by
   default, only becomes a side-by-side grid once there's room for both columns
   to breathe — a plain inline grid-template-columns here would force the form
   card into a sliver on phones, which is what caused the boat-rides overflow. */
.page-hero-split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 960px) { .page-hero-split { grid-template-columns: 1.2fr 1fr; gap: 40px; } }

/* Search/filter bar (tours, hotels hero-overlap panels). Stacks to one column
   on phones and tablets; expands to N columns + a trailing button only once
   there's enough width for each field to stay legible. */
.filter-bar { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 860px) {
    .filter-bar.cols-3 { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; }
    .filter-bar.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr auto; align-items: end; }
}

/* ---------- Feature Cards (Why Discover Kashi) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .feature-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid.cols-3 { grid-template-columns: 1fr; } }
.feature-card {
    background: #fff; border-radius: var(--radius-md); padding: 34px 26px 50px; text-align: center;
    position: relative; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 270px;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card .fc-corner {
    position: absolute; width: 40px; height: 40px; opacity: 0.55; pointer-events: none; z-index: 0;
}
.feature-card .fc-corner.tl { top: 0; left: 0; transform: scaleY(-1); }
.feature-card .fc-corner.br { bottom: 0; right: 0; transform: scaleX(-1); }
.feature-card img.fc-icon { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 18px; position: relative; z-index: 1; }
.feature-card h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: 0.02em; position: relative; z-index: 1; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; position: relative; z-index: 1; max-width: 220px; }

/* ---------- Homepage editorial introduction ---------- */
.home-intro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 12%, rgba(212,175,55,0.1), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}
.home-intro::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    right: -250px;
    bottom: -300px;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(212,175,55,0.035), 0 0 0 140px rgba(212,175,55,0.025);
    pointer-events: none;
}
.home-intro-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: clamp(54px, 7vw, 110px);
}
.home-intro-copy { max-width: 620px; }
.home-intro-copy .section-title {
    max-width: 580px;
    font-size: clamp(42px, 5.4vw, 70px);
    line-height: 1.03;
    letter-spacing: -0.035em;
}
.home-intro-lede {
    max-width: 590px;
    margin-top: 28px;
    color: #293653;
    font-family: var(--font-serif);
    font-size: clamp(19px, 1.9vw, 25px);
    line-height: 1.5;
}
.home-intro-body { max-width: 570px; margin-top: 15px; color: var(--text-muted); font-size: 14px; line-height: 1.85; }
.home-trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 32px; }
.home-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 16px;
    border: 1px solid rgba(22,38,79,0.09);
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 12px 30px rgba(22,38,79,0.04);
}
.home-trust-item > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(184,142,31,0.3);
    border-radius: 50%;
    color: #a77a13;
    font-family: var(--font-serif);
    font-size: 11px;
}
.home-trust-item h3 { color: var(--navy); font-size: 15px; line-height: 1.25; }
.home-trust-item p { margin-top: 5px; color: var(--text-muted); font-size: 11.5px; line-height: 1.55; }

.home-intro-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 650px;
}
.home-intro-mosaic figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #171b29; box-shadow: 0 24px 60px rgba(19,25,44,0.16); }
.home-mosaic-main { grid-row: 1 / -1; border-radius: 220px 220px 28px 28px; }
.home-mosaic-weave { border-radius: 24px 120px 24px 24px; }
.home-mosaic-food { border-radius: 24px 24px 120px 24px; }
.home-intro-mosaic figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,9,24,0.76), transparent 52%); pointer-events: none; }
.home-intro-mosaic figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.6s ease; }
.home-intro-mosaic figure:hover img { transform: scale(1.045); filter: saturate(1.06); }
.home-intro-mosaic figcaption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 23px 24px; color: #fff; }
.home-intro-mosaic figcaption small { display: block; color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.home-intro-mosaic figcaption strong { display: block; margin-top: 5px; color: #fff; font-family: var(--font-serif); font-size: clamp(18px, 2vw, 26px); line-height: 1.1; }
.home-mosaic-note {
    position: absolute;
    z-index: 4;
    left: 42%;
    bottom: 34px;
    display: flex;
    min-width: 190px;
    flex-direction: column;
    padding: 17px 20px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 16px;
    background: rgba(255,255,255,0.91);
    box-shadow: 0 18px 45px rgba(12,19,38,0.2);
    backdrop-filter: blur(12px);
}
.home-mosaic-note > span { position: absolute; top: 16px; right: 17px; color: var(--gold); }
.home-mosaic-note strong { padding-right: 20px; color: var(--navy); font-family: var(--font-serif); font-size: 15px; }
.home-mosaic-note small { margin-top: 3px; color: var(--text-muted); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Homepage image-led closing invitation ---------- */
.home-closing-section { padding-top: 45px; }
.home-closing-cta {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
    overflow: hidden;
    padding: clamp(38px, 6vw, 76px);
    border-radius: 34px;
    background-image: var(--home-cta-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 30px 80px rgba(10,21,49,0.2);
}
.home-closing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,14,38,0.88) 0%, rgba(8,18,45,0.66) 47%, rgba(8,18,45,0.18) 78%), linear-gradient(0deg, rgba(6,12,30,0.38), transparent 58%);
}
.home-closing-copy, .home-closing-cta > .btn { position: relative; z-index: 1; }
.home-closing-copy { max-width: 670px; }
.home-closing-copy .section-eyebrow { color: var(--gold-light); }
.home-closing-copy h2 { max-width: 640px; margin-top: 10px; color: #fff; font-size: clamp(38px, 5.2vw, 66px); line-height: 1.03; letter-spacing: -0.025em; }
.home-closing-copy p { max-width: 590px; margin-top: 20px; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.8; }
.home-closing-cta > .btn { flex: 0 0 auto; box-shadow: 0 14px 34px rgba(0,0,0,0.2); }

@media (max-width: 1080px) {
    .home-intro-grid { grid-template-columns: 1fr; }
    .home-intro-copy { max-width: 790px; }
    .home-intro-mosaic { width: 100%; max-width: 880px; height: 620px; margin: 0 auto; }
    .home-closing-cta { min-height: 520px; align-items: flex-start; flex-direction: column; justify-content: flex-end; }
}
@media (max-width: 700px) {
    .home-intro-copy .section-title { font-size: clamp(38px, 12vw, 52px); }
    .home-trust-grid { grid-template-columns: 1fr; }
    .home-intro-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1.25fr) minmax(0, 0.75fr);
        gap: 10px;
        height: 590px;
    }
    .home-mosaic-main { grid-column: 1 / -1; grid-row: 1; border-radius: 130px 130px 20px 20px; }
    .home-mosaic-weave { grid-column: 1; grid-row: 2; border-radius: 18px 18px 18px 70px; }
    .home-mosaic-food { grid-column: 2; grid-row: 2; border-radius: 18px 18px 70px 18px; }
    .home-intro-mosaic figcaption { padding: 18px 16px; }
    .home-intro-mosaic figcaption strong { font-size: 18px; }
    .home-intro-mosaic figcaption small { font-size: 7px; }
    .home-mosaic-note { display: none; }
    .home-closing-section { padding-top: 20px; }
    .home-closing-cta { min-height: 540px; padding: 30px 25px; border-radius: 24px; background-position: 24% center; }
    .home-closing-cta::before { background: linear-gradient(0deg, rgba(6,14,38,0.92) 0%, rgba(8,18,45,0.6) 68%, rgba(8,18,45,0.18) 100%); }
    .home-closing-copy h2 { font-size: clamp(36px, 11vw, 48px); }
    .home-closing-cta > .btn { width: 100%; }
}
@media (max-width: 430px) {
    .home-intro-mosaic { height: 520px; }
    .home-trust-item { padding: 15px 14px; }
}

/* ---------- Cards: Tour / Hotel / Boat / Blog ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.premium-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light); display: flex; flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease; position: relative;
}
.premium-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
    background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s ease;
}
.premium-card:hover::before { transform: scaleX(1); }
.premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.premium-card .pc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.premium-card .pc-media::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(0deg, rgba(8,16,40,0.55) 0%, rgba(8,16,40,0.08) 38%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease;
}
.premium-card:hover .pc-media::after { opacity: 1; }
.premium-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.premium-card:hover .pc-media img { transform: scale(1.1); }
.premium-card .pc-badge { position: absolute; top: 14px; left: 14px; z-index: 2; box-shadow: 0 6px 16px rgba(8,16,40,0.3); }
.premium-card .pc-price-tag {
    position: absolute; bottom: 14px; right: 14px; z-index: 2; background: rgba(8,16,40,0.88); color: #fff;
    padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 700; box-shadow: 0 6px 16px rgba(8,16,40,0.3);
}
.premium-card .pc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; position: relative; }
.premium-card .pc-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #9c7d1f; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.premium-card .pc-meta span { display: inline-flex; align-items: center; gap: 5px; }
.premium-card h3 { font-size: 18.5px; line-height: 1.35; margin-bottom: 8px; }
.premium-card h3 a { color: var(--navy); }
.premium-card h3 a:hover { color: var(--gold); }
.premium-card p.pc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.premium-card .pc-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-light); }
.premium-card .pc-cta {
    font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
    display: inline-flex; align-items: center; gap: 6px; background: var(--alt-bg); padding: 9px 16px;
    border-radius: 999px; transition: all 0.25s ease; white-space: nowrap;
}
.premium-card .pc-cta:hover { color: #fff; background: var(--navy); }
.premium-card .pc-price { font-family: var(--font-serif); font-size: 19px; color: var(--navy); font-weight: 700; }
.premium-card .pc-price small { font-size: 11px; color: var(--text-muted); font-family: var(--font-sans); font-weight: 500; }
.premium-card .pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

.h-\[430px\], .card-skeleton { height: 430px; border-radius: var(--radius-lg); background: linear-gradient(100deg, #eef1f8 25%, #f7f8fb 37%, #eef1f8 63%); background-size: 400% 100%; animation: shimmer 1.6s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.empty-state {
    background: #fff; border: 1px dashed var(--border-light); border-radius: var(--radius-md);
    padding: 60px 30px; text-align: center; color: var(--text-muted); font-size: 14px;
}

.view-all-wrap { text-align: center; margin-top: 44px; }

/* ---------- About Varanasi (home) ---------- */
.about-block { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; position: relative; }
.about-block .ab-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-block .ab-image img { aspect-ratio: 3/4; object-fit: cover; }
.about-block .ab-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 30px; }
@media (min-width: 860px) { .about-block .ab-checklist { grid-template-columns: repeat(4, 1fr); } }
.about-block .ab-check-item {
    display: flex; align-items: flex-start; gap: 10px; background: var(--alt-bg);
    border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13.5px;
    color: var(--text-dark);
}
.section-navy .ab-check-item { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(248,245,240,0.9); }
.about-block .ab-check-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-block .ab-watermark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 260px; opacity: 0.3; pointer-events: none; }

/* ---------- CTA banners ---------- */
.cta-banner {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    background: linear-gradient(100deg, var(--navy) 0%, var(--navy) 42%, #c3cee6 78%, #e9edf6 100%);
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 260px;
}
.cta-banner.cta-auto { grid-template-columns: auto 1fr; }
@media (max-width: 1024px) { .cta-banner.cta-auto { grid-template-columns: 1fr; } }
.cta-banner .cta-content { padding: 50px 56px; position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 26px; max-width: 400px; font-size: 14.5px; line-height: 1.8; }
.cta-banner .cta-image { height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cta-banner .cta-image img { max-height: 260px; object-fit: contain; opacity: 0.92; }
.cta-banner.cta-strip { grid-template-columns: auto 1fr auto; gap: 24px; padding: 30px 40px; background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft)); align-items: center; }
.cta-banner.cta-strip .cta-emblem { width: 56px; height: 56px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.cta-banner.cta-strip h2 { font-size: 22px; margin-bottom: 4px; }
.cta-banner.cta-strip p { margin-bottom: 0; font-size: 13.5px; }

.cta-gold-strip {
    background: var(--gold); border-radius: var(--radius-lg); padding: 56px; text-align: center;
}
.cta-gold-strip h2 { color: var(--navy-dark); font-size: clamp(24px, 3vw, 34px); margin-bottom: 22px; }

/* ---------- Trust / icon rows ---------- */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-row .tr-item svg { color: var(--navy); margin-bottom: 14px; }
.trust-row .tr-item strong { display: block; font-family: var(--font-serif); font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.trust-row .tr-item span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 13px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm);
    background: #fbfcfe; font-size: 14px; color: var(--text-dark); transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); background: #fff; }
textarea.form-control { resize: vertical; min-height: 130px; }
.field-icon-wrap { position: relative; }
.field-icon-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.field-icon-wrap .form-control { padding-left: 40px; }

.form-card {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 40px;
    position: relative; border: 1px solid var(--border-light);
}
.form-card .fc-corner-deco {
    position: absolute; width: 34px; height: 34px; opacity: 0.8; pointer-events: none;
    background-repeat: no-repeat; background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Cpath d='M3 30 L3 10 Q3 3 10 3 L30 3' fill='none' stroke='%23d4af37' stroke-width='1.6'/%3E%3Cpath d='M3 19 Q3 11 11 11 Q19 11 19 3' fill='none' stroke='%23d4af37' stroke-width='1.6'/%3E%3Ccircle cx='37' cy='3' r='2' fill='%23d4af37'/%3E%3Ccircle cx='3' cy='37' r='1.4' fill='%23d4af37'/%3E%3C/svg%3E");
}
.form-card .fc-corner-deco.tl { top: 14px; left: 14px; }
.form-card .fc-corner-deco.tr { top: 14px; right: 14px; transform: scaleX(-1); }
.form-card .fc-corner-deco.bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.form-card .fc-corner-deco.br { bottom: 14px; right: 14px; transform: scale(-1, -1); }
.book-cta-sticky { margin-bottom: 18px; }

.form-card-navy {
    background: rgba(8,16,40,0.9); backdrop-filter: blur(14px); border-radius: var(--radius-lg);
    padding: 30px; box-shadow: var(--shadow-card); border: 1px solid rgba(255,255,255,0.15); color: #fff;
}
.form-card-navy .form-label { color: rgba(255,255,255,0.7); }
.form-card-navy .form-control { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.form-card-navy .form-control::placeholder { color: rgba(255,255,255,0.45); }
.form-card-navy h3 { color: #fff; text-align: center; margin-bottom: 4px; }

.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 18px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: #dcf5e6; color: #15803d; }
.form-msg.error { background: #fde7e7; color: #b91c1c; }

/* ---------- Sidebar filters (Tours/Hotels listing) ---------- */
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.filters-panel { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border-light); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.filters-panel h4 { font-size: 15px; margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; }
.filters-panel .clear-link { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.filter-group { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--border-light); }
.filter-group:last-child { border: none; margin-bottom: 0; }
.filter-group h5 { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; font-weight: 700; }
.filter-check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; margin-bottom: 10px; color: var(--text-dark); }
.filter-check input { accent-color: var(--navy); width: 15px; height: 15px; }
.star-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.star-btns button { padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border-light); background: #fff; font-size: 12px; font-weight: 600; }
.star-btns button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.listing-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.listing-toolbar .count { font-size: 13.5px; color: var(--text-muted); }
.sort-select { padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); font-size: 13px; }

.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.category-pills a {
    padding: 10px 22px; border-radius: 999px; border: 1px solid var(--border-light); font-size: 12.5px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); background: #fff;
    transition: all 0.25s ease;
}
.category-pills a:hover, .category-pills a.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Detail pages ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 46px; align-items: start; }
.detail-content { min-width: 0; }
.detail-content .prose { color: var(--text-dark); font-size: 15.5px; line-height: 1.9; }
.detail-content .prose p { margin-bottom: 18px; }
.detail-content .prose h2, .detail-content .prose h3 { margin: 30px 0 14px; }

/* ---------- Rich content typography (tour/hotel/boat prose + blog body) ---------- */
.prose h2, .prose h3, .blog-detail-body h2, .blog-detail-body h3 {
    font-family: var(--font-serif); color: var(--navy); line-height: 1.3; position: relative; padding-left: 18px;
    font-size: 21px;
}
.prose h2::before, .prose h3::before, .blog-detail-body h2::before, .blog-detail-body h3::before {
    content: ''; position: absolute; left: 0; top: 0.18em; bottom: 0.18em; width: 4px; background: var(--gold); border-radius: 2px;
}
.prose ul, .blog-detail-body ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 11px; }
.prose ul li, .blog-detail-body ul li { position: relative; padding-left: 26px; }
.prose ul li::before, .blog-detail-body ul li::before {
    content: ''; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
/* When a bullet list is actually a set of named highlights (each item written
   as "<strong>Title</strong> — detail", the common pattern in tour/boat copy),
   upgrade it from a plain dot list into numbered highlight cards — the same
   visual language as the structured .highlight-list component, but driven
   purely by markup shape so it applies to any prose content without a data
   migration. Plain bullet lists (no leading <strong>) keep the simple dot. */
.prose ul:has(li > strong:first-child), .blog-detail-body ul:has(li > strong:first-child) {
    counter-reset: prosehl; gap: 14px;
}
.prose ul li:has(> strong:first-child), .blog-detail-body ul li:has(> strong:first-child) {
    counter-increment: prosehl; list-style: none; padding: 16px 18px 16px 60px;
    background: var(--alt-bg); border: 1px solid var(--border-light); border-radius: var(--radius-md); color: var(--text-muted);
}
.prose ul li:has(> strong:first-child)::before, .blog-detail-body ul li:has(> strong:first-child)::before {
    content: counter(prosehl); top: 16px; left: 16px; width: 28px; height: 28px; border-radius: 50%;
    background: var(--navy); color: var(--gold-light); font-family: var(--font-serif); font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
}
.prose ul li:has(> strong:first-child) > strong:first-child, .blog-detail-body ul li:has(> strong:first-child) > strong:first-child {
    display: block; font-size: 14.5px; margin-bottom: 3px;
}
.prose ol, .blog-detail-body ol { padding-left: 22px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.prose ol li, .blog-detail-body ol li { padding-left: 6px; }
.prose strong, .blog-detail-body strong { color: var(--navy); font-weight: 700; }
.prose a, .blog-detail-body a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(212,175,55,0.55); text-underline-offset: 3px; }
.prose a:hover, .blog-detail-body a:hover { color: var(--gold); }
/* Same idea for step-by-step copy written as "<p><strong>Time · Title</strong>
   — detail</p>" paragraphs (the itinerary pattern) — turn the run of
   bold-led paragraphs into a connected timeline with numbered stops. */
.prose:has(p > strong:first-child) { counter-reset: prosestep; }
.prose p:has(> strong:first-child) {
    counter-increment: prosestep; position: relative; padding: 3px 0 3px 46px; color: var(--text-muted);
}
.prose p:has(> strong:first-child)::before {
    content: counter(prosestep); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%;
    background: var(--navy); color: var(--gold-light); font-family: var(--font-serif); font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center; z-index: 1;
}
.prose p:has(> strong:first-child):not(:last-child)::after {
    content: ''; position: absolute; left: 14px; top: 32px; bottom: -19px; width: 2px; background: var(--border-light);
}
.prose p:has(> strong:first-child) > strong:first-child { display: block; color: var(--navy); font-family: var(--font-serif); font-size: 15px; margin-bottom: 4px; }
.prose blockquote, .blog-detail-body blockquote {
    margin: 28px 0; padding: 26px 28px 26px 56px; background: var(--alt-bg); border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm); font-family: var(--font-serif); font-style: italic; font-size: 17px;
    color: var(--navy); position: relative; line-height: 1.6;
}
.prose blockquote::before, .blog-detail-body blockquote::before {
    content: '\201C'; font-family: var(--font-serif); font-size: 56px; color: var(--gold); opacity: 0.4;
    line-height: 1; position: absolute; top: 12px; left: 16px;
}
.prose blockquote p, .blog-detail-body blockquote p { margin: 0; }
.prose img, .blog-detail-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 24px 0; display: block; box-shadow: var(--shadow-soft); }
.detail-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.detail-gallery img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; }
.detail-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-soft); }
.detail-hero-img img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.detail-facts { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 30px; }
.detail-facts .fact {
    flex: 1 1 130px; font-size: 11.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--alt-bg); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 16px 18px;
}
.detail-facts .fact strong {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    color: var(--navy); font-family: var(--font-serif); font-size: 16px; line-height: 1.3;
    text-transform: none; letter-spacing: normal; margin-bottom: 3px;
}
.amenity-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.amenity-tags span { background: var(--alt-bg); color: var(--navy); font-size: 12.5px; font-weight: 600; padding: 8px 16px; border-radius: 999px; }

/* ---------- Included / excluded feature list (boat & tour detail) ---------- */
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; margin: 34px 0; }
.detail-features h3 { font-size: 17px; margin-bottom: 16px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--text-dark); line-height: 1.55; }
.feature-list .fl-icon { flex-shrink: 0; margin-top: 1px; width: 20px; height: 20px; padding: 4px; border-radius: 50%; box-sizing: border-box; }
.feature-list-yes .fl-icon { background: #e3f6ea; color: #16a34a; }
.feature-list-no .fl-icon { background: #fbe9e9; color: #dc2626; }

/* ---------- FAQ accordion (boat & tour detail) ---------- */
.accordion-item { border-top: 1px solid var(--border-light); }
.accordion-item:last-child { border-bottom: 1px solid var(--border-light); }
.accordion-item button {
    display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; border: 0;
    padding: 18px 0; background: transparent; color: var(--navy); font-family: var(--font-sans);
    font-size: 14.5px; font-weight: 700; text-align: left; cursor: pointer;
}
.accordion-item button span:last-child { color: var(--gold); font-family: var(--font-serif); font-size: 22px; font-weight: 400; transition: transform 0.3s ease; flex-shrink: 0; }
.accordion-item button[aria-expanded='true'] span:last-child { transform: rotate(45deg); }
.accordion-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.accordion-answer > p { min-height: 0; overflow: hidden; color: var(--text-muted); font-size: 13.5px; line-height: 1.75; margin: 0; }
.accordion-item.is-open .accordion-answer { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-answer > p { padding-bottom: 19px; }

/* ---------- Highlights list (tour detail: "What You'll Experience") ---------- */
.highlight-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 20px; }
.highlight-list li { display: flex; gap: 16px; }
.highlight-list .hl-num {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 14px; font-weight: 700;
}
.highlight-list h4 { font-size: 14.5px; margin-bottom: 4px; }
.highlight-list p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Itinerary roadmap (tour detail) ---------- */
.itinerary-list { display: flex; flex-direction: column; margin-top: 8px; }
.itinerary-step { display: flex; gap: 20px; position: relative; padding-bottom: 30px; }
.itinerary-step:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 2px; background: var(--border-light); }
.itinerary-num {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 16px; font-weight: 700; z-index: 1;
}
.itinerary-body { padding-top: 6px; }
.itinerary-body .time { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 4px; }
.itinerary-body h4 { font-size: 15px; margin-bottom: 6px; }
.itinerary-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Guide profile card (tour detail) ---------- */
.guide-card { display: flex; gap: 20px; align-items: flex-start; background: var(--alt-bg); border-radius: var(--radius-lg); padding: 24px; margin-top: 16px; }
.guide-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.guide-card h4 { font-size: 16px; margin-bottom: 6px; }
.guide-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ---------- Distances list (hotel detail) ---------- */
.distance-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 30px; margin-top: 16px; }
.distance-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border-light); font-size: 13.5px; }
.distance-item .label { color: var(--text-dark); font-weight: 600; }
.distance-item .value { color: var(--navy); font-weight: 700; white-space: nowrap; margin-left: 12px; }

/* ---------- Photo gallery page ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; border: 0; padding: 0; margin: 0; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; background: var(--alt-bg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,16,40,0.6), transparent 55%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-caption {
    position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; color: #fff; font-family: var(--font-serif);
    font-size: 14px; text-align: left; opacity: 0; transform: translateY(6px); transition: all 0.3s ease;
}
.gallery-item:hover .gi-caption { opacity: 1; transform: translateY(0); }

.gallery-lightbox {
    position: fixed; z-index: 10000; inset: 0; display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center; padding: 34px; background: rgba(8,16,40,0.95); backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.gallery-lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; max-height: calc(100vh - 70px); margin: 0; }
.gallery-lightbox figure img { max-width: 100%; max-height: calc(100vh - 130px); border-radius: 10px; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,0.5); }
.gallery-lightbox figcaption { margin-top: 16px; color: rgba(255,255,255,0.8); font-family: var(--font-serif); font-size: 16px; text-align: center; }
.gallery-lightbox figcaption:empty { display: none; }
.gallery-lightbox-close, .gallery-lightbox-nav {
    border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; cursor: pointer;
}
.gallery-lightbox-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.gallery-lightbox-nav { width: 46px; height: 46px; justify-self: center; font-size: 28px; line-height: 1; }
body.gallery-lightbox-open { overflow: hidden; }

/* ---------- Video lightbox (YouTube / Instagram embeds) ---------- */
.video-lightbox {
    position: fixed; z-index: 10000; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px;
    background: rgba(8,16,40,0.95); backdrop-filter: blur(14px);
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.video-lightbox-frame {
    width: 100%; max-width: 880px; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.5); background: #000;
}
.video-lightbox-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-lightbox-close {
    position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: #fff; font-size: 26px;
    line-height: 1; cursor: pointer;
}
body.video-lightbox-open { overflow: hidden; }

/* ---------- Horizontal scroll carousel (videos / reels showcases) ---------- */
.scroll-carousel { position: relative; }
.sc-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 4px 4px 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.sc-track::-webkit-scrollbar { display: none; }
.sc-track > * { scroll-snap-align: start; flex-shrink: 0; }
.sc-arrow {
    position: absolute; top: 40%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy); color: #fff; border: 3px solid #fff; box-shadow: 0 8px 20px rgba(8,16,40,0.25);
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease;
}
.sc-arrow:hover { background: var(--gold); color: var(--navy-dark); }
.sc-arrow[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }
.sc-prev { left: -10px; }
.sc-next { right: -10px; }
.sc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.sc-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); border: 0; padding: 0; cursor: pointer; transition: all 0.3s ease; }
.sc-dots button.is-active { background: var(--gold); width: 22px; border-radius: 5px; }
.scroll-carousel-dark .sc-arrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.scroll-carousel-dark .sc-arrow:hover { background: var(--gold); border-color: var(--gold); }
.scroll-carousel-dark .sc-dots button { background: rgba(255,255,255,0.2); }
.scroll-carousel-dark .sc-dots button.is-active { background: var(--gold); }
/* Tour/experience cards are normally CSS-grid items (width set by the grid
   track); inside a scroll-carousel's flex track they need their own width.
   min(Npx, 82vw) keeps ~3.5 desktop cards visible while giving a one-card-
   plus-peek view on phones without a separate breakpoint. Specificity here
   (.scroll-carousel .dd-package-card) intentionally beats the plain
   .dd-package-card tablet rule that would otherwise switch it to a
   side-by-side layout too cramped for a 300px-wide carousel card. */
.scroll-carousel .premium-card { width: min(320px, 82vw); }
.scroll-carousel .dd-package-card { width: min(300px, 82vw); display: flex; flex-direction: column; }
.scroll-carousel .dd-package-image { aspect-ratio: 16 / 10; min-height: 0; }

/* ---------- Video card (Video Guides showcase) ---------- */
.video-card {
    display: block; width: 288px; background: #fff; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.video-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--alt-bg); }
.video-card-media img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
    position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
    background: rgba(212,175,55,0.95); display: flex; align-items: center; justify-content: center; color: var(--navy-deep);
    box-shadow: 0 8px 24px rgba(8,16,40,0.35); transition: transform 0.3s ease;
}
.video-card:hover .video-play-btn { transform: scale(1.12); }
.video-card-body { padding: 16px 18px 20px; }
.video-card-badge { margin-bottom: 10px; }
.video-card-body h3 { font-size: 15px; line-height: 1.4; margin-bottom: 6px; color: var(--navy); }
.video-card-body p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Reel card (Viral Reels showcase) ---------- */
.reel-card {
    display: flex; flex-direction: column; width: clamp(252px, 78vw, 320px); border-radius: var(--radius-md); overflow: hidden;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.reel-card-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.reel-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); }
.reel-head-text { flex: 1; min-width: 0; }
.reel-username { display: block; font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reel-view-profile {
    flex-shrink: 0; font-size: 11.5px; font-weight: 700; color: var(--gold-light); border: 1px solid rgba(212,175,55,0.5);
    padding: 5px 12px; border-radius: 999px; transition: all 0.25s ease; white-space: nowrap;
}
.reel-view-profile:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.reel-card-media { position: relative; display: block; aspect-ratio: 9/16; overflow: hidden; background: rgba(255,255,255,0.05); }
.reel-card-media img { width: 100%; height: 100%; object-fit: cover; }
.reel-card .video-play-btn { width: 54px; height: 54px; }
.reel-watch-label {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 12px 14px; text-align: center;
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); pointer-events: none;
}
.reel-card-body { padding: 12px 14px 16px; }
.reel-more-link { display: block; font-size: 12.5px; font-weight: 600; color: var(--gold-light); margin-bottom: 12px; }
.reel-more-link:hover { text-decoration: underline; }
.reel-action-row { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.reel-action-row .reel-ig-icon { margin-left: auto; opacity: 0.8; }
.reel-like-count { font-size: 12.5px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.reel-card-caption { font-size: 12.5px; color: rgba(255,255,255,0.82); line-height: 1.5; margin: 0 0 10px; }
.reel-card-caption b { color: #fff; margin-right: 4px; }
.reel-comment-hint { display: block; font-size: 12px; color: rgba(255,255,255,0.4); padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }

.sidebar-sticky { position: sticky; top: calc(var(--header-h) + 20px); }
.price-box { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 26px; margin-bottom: 22px; text-align: center; }
.price-box .amount { font-family: var(--font-serif); font-size: 34px; color: var(--gold-light); }
.price-box .amount small { font-size: 13px; color: rgba(255,255,255,0.7); font-family: var(--font-sans); }

.related-grid { margin-top: 20px; }

/* ---------- Testimonial ---------- */
.testimonial-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; position: relative; }
.testimonial-card .quote-mark { font-family: var(--font-serif); font-size: 50px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.testimonial-card p { font-size: 15px; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 3px; }
.testimonial-card .author { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); }

/* ---------- Blog ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-sidebar .widget { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.blog-sidebar .widget h4 { font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--alt-bg); position: relative; }
.blog-sidebar .widget h4::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 40px; height: 2px; background: var(--gold); }
.search-widget { display: flex; gap: 8px; }
.search-widget input { flex: 1; }
.search-widget button { background: var(--navy); color: #fff; border: none; border-radius: var(--radius-sm); width: 46px; display: flex; align-items: center; justify-content: center; }
.cat-list li { display: flex; justify-content: space-between; padding: 9px 0; font-size: 13.5px; border-bottom: 1px solid var(--border-light); }
.cat-list li:last-child { border: none; }
.cat-list li a { display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
.cat-list li a:hover { color: var(--navy); font-weight: 600; }
.cat-list li span.count { color: var(--text-muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { padding: 7px 14px; background: var(--alt-bg); border-radius: 999px; font-size: 12px; color: var(--navy); font-weight: 600; }
.tag-cloud a:hover { background: var(--navy); color: #fff; }

.blog-detail-body { font-size: 16px; line-height: 1.95; }
.blog-detail-body p { margin-bottom: 20px; }
.blog-meta-row { display: flex; align-items: center; gap: 18px; color: var(--text-muted); font-size: 13px; margin: 16px 0 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(248,245,240,0.85); position: relative; overflow: hidden; }
.footer-top { padding-top: 70px; }
.footer-inner { max-width: 1360px; margin: 0 auto; padding: 0 24px 60px; display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr; gap: 40px; position: relative; z-index: 2; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-mark { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo strong { display: block; font-family: var(--font-serif); font-size: 18px; color: #fff; }
.footer-logo small { display: block; font-size: 11px; letter-spacing: 0.16em; color: var(--gold); font-weight: 700; margin-top: 3px; }
.footer-about { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.footer-heading { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 24px; position: relative; display: inline-block; }
.footer-heading-divider { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); width: 90px; }
.footer-links li { margin-bottom: 2px; }
.footer-links a { display: block; padding: 8px 0; font-size: 13.5px; transition: all 0.2s ease; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; line-height: 1.6; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-map { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); height: 170px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }

.footer-skyline { width: 100%; line-height: 0; position: relative; }
.footer-skyline img { width: 100%; height: clamp(140px, 22vw, 300px); object-fit: cover; object-position: center bottom; }

.footer-trust { background: var(--cream); position: relative; padding: 34px 24px; overflow: hidden; }
.footer-trust-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.footer-trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.footer-trust-item svg { color: var(--navy); flex-shrink: 0; }
.footer-trust-item strong { display: block; font-family: var(--font-serif); font-size: 14px; color: var(--navy); }
.footer-trust-item span { font-size: 11.5px; color: var(--text-muted); }
.footer-trust-deco { position: absolute; bottom: -10px; width: 130px; opacity: 0.5; }
.footer-trust-deco-left { left: 20px; }
.footer-trust-deco-right { right: 20px; }

.footer-bottom { background: var(--navy-dark); padding: 16px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.6); position: relative; z-index: 2; }
.footer-policy-links { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 4px 18px; margin: 10px 0 0; padding: 0; }
.footer-policy-links a { color: rgba(255,255,255,0.55); font-size: 11.5px; }
.footer-policy-links a:hover { color: var(--gold-light); }

/* ---------- Admin login link (footer decorative divider reuse) ---------- */
.dots-divider { display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
    .feature-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
    .about-block { grid-template-columns: 1fr; }
    .about-block .ab-watermark { display: none; }
    .detail-layout { grid-template-columns: 1fr; }
    .sidebar-sticky { position: static; }
    /* Below this breakpoint the sidebar (and its price + Book & Pay button)
       falls to the bottom of the page's DOM flow, so reaching it means
       scrolling past the entire description first. Pinning price + CTA to
       the viewport bottom keeps booking one tap away at any scroll depth —
       the .form-card enquiry form is a secondary path and stays in normal
       flow, only the primary CTA needs to always be reachable. */
    .book-cta-sticky {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; margin-bottom: 0;
        display: flex; align-items: center; gap: 14px;
        background: #fff; padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 30px rgba(15,30,70,0.14); border-top: 1px solid var(--border-light);
    }
    .book-cta-sticky .price-box { background: none; padding: 0; margin: 0; text-align: left; flex: 1; min-width: 0; }
    .book-cta-sticky .price-box .amount { font-size: 21px; color: var(--navy); }
    .book-cta-sticky .price-box .amount small { color: var(--text-muted); }
    .book-cta-sticky .btn { width: auto; margin: 0; flex-shrink: 0; padding-left: 22px; padding-right: 22px; }
    body:has(.book-cta-sticky) { padding-bottom: 76px; }
    .detail-features { grid-template-columns: 1fr; gap: 26px; }
    .distance-list { grid-template-columns: 1fr; }
    .guide-card { flex-direction: column; align-items: center; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .hero-home-inner { grid-template-columns: 1fr; }
    .hero-side-card-wrap { justify-self: start; max-width: 420px; }
}

@media (max-width: 1024px) {
    .main-nav, .nav-actions .nav-cta { display: none; }
    .hamburger { display: flex; }
    .listing-layout { grid-template-columns: 1fr; }
    .filters-panel { position: static; }
    .cta-banner { grid-template-columns: 1fr; }
    .cta-banner .cta-image { display: none; }
    .cta-banner.cta-strip { grid-template-columns: 1fr; text-align: center; }
    .cta-banner.cta-strip .cta-emblem { margin: 0 auto; }
}

@media (max-width: 860px) {
    .trust-row, .footer-trust-inner { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .hero-home { background-attachment: scroll; }
    .hero-home-slide { background-attachment: scroll; }
    .hero-carousel-caption, .hero-carousel-dots { left: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
    .gallery-lightbox { grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 16px 4px; }
    .gallery-lightbox-nav { width: 38px; height: 38px; font-size: 22px; }
    .video-card { width: 240px; }
    .sc-arrow { width: 38px; height: 38px; }
    .sc-prev { left: -4px; }
    .sc-next { right: -4px; }
    .video-lightbox { padding: 16px; }
    .video-lightbox-frame { max-width: 100%; }
}

@media (max-width: 900px) {
    .topbar-msg { display: none; }
    .topbar-inner { justify-content: center; padding: 7px 16px; }
    .topbar-right { width: 100%; justify-content: center; gap: 14px; }
}

@media (max-width: 640px) {
    .feature-grid, .card-grid, .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-msg { display: none; }
    .topbar-inner { justify-content: center; padding: 7px 12px; }
    .topbar-right { justify-content: space-between; gap: 10px; }
    .topbar-link[href^="mailto:"] { display: none; }
    .topbar-sep { display: none; }
    .topbar-social { gap: 7px; }
    .topbar-social a { width: 24px; height: 24px; }
    .hero-home h1 { font-size: 56px; }
    .page-hero { padding: 130px 0 70px; min-height: 340px; }
    .detail-gallery { grid-template-columns: repeat(2, 1fr); }
    .trust-row, .footer-trust-inner { grid-template-columns: 1fr; text-align: left; }
    .footer-trust-item { justify-content: flex-start; }
    .footer-trust-deco { display: none; }
    .hero-overlap-panel { padding: 20px; margin-top: -40px; }
    .cta-banner .cta-content { padding: 34px 26px; }
}

/* ============================================================
   Dev Diwali 2026 — event landing page
   ============================================================ */
.page-dev-diwali .page-hero { background-size: cover; background-position: center 30%; }
.page-dev-diwali .page-hero .hero-overlay { background: linear-gradient(100deg, rgba(8,16,40,0.88) 15%, rgba(8,16,40,0.55) 70%, rgba(8,16,40,0.4) 100%); }
.page-dev-diwali .page-hero h1 { font-size: clamp(44px, 7vw, 76px); line-height: 1.02; margin-top: 10px; }
.page-dev-diwali .page-hero .page-hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* At-a-glance strip */
.glance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.glance-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px 22px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.glance-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.glance-item .glance-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(212,175,55,0.14); color: #b8932a; display: flex; align-items: center; justify-content: center; }
.glance-item strong { display: block; font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); }
.glance-item span { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* Highlights cards (navy section) */
.hl-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); overflow: hidden; display: flex; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hl-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.hl-card .hl-media { flex: 0 0 40%; position: relative; overflow: hidden; }
.hl-card .hl-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hl-card:hover .hl-media img { transform: scale(1.06); }
.hl-card .hl-body { flex: 1; padding: 24px 24px 26px; }
.hl-card .hl-body h3 { color: var(--gold-light); font-size: 19px; margin-bottom: 8px; }
.hl-card .hl-body p { color: rgba(248,245,240,0.72); font-size: 13px; line-height: 1.75; }

/* Timeline */
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tl-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 26px 24px; position: relative; box-shadow: var(--shadow-soft); }
.tl-item::before { content: ''; position: absolute; top: 26px; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.tl-item .tl-time { display: inline-block; font-size: 14px; color: #b8932a; font-weight: 700; background: rgba(212,175,55,0.12); border-radius: 20px; padding: 4px 14px; margin-bottom: 14px; }
.tl-item h4 { font-size: 15px; margin-bottom: 6px; }
.tl-item p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }

/* Packages */
.pkg-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border-light); display: flex; flex-direction: column; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.pkg-card .pkg-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pkg-card .pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }
.pkg-card .pkg-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.pkg-card .pkg-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pkg-card .pkg-body h3 { font-size: 19px; margin-bottom: 8px; }
.pkg-card .pkg-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; flex: 1; }

/* Photo gallery */
.dd-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.dd-gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.dd-gallery figure:nth-child(odd) { grid-row: span 2; }
.dd-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.dd-gallery figure:hover img { transform: scale(1.05); }

/* Practical info cards */
.info-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-soft); }
.info-card .info-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(22,38,79,0.07); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card h4 { font-size: 15px; margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

@media (max-width: 992px) {
    .glance-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .dd-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 768px) {
    .hl-card { flex-direction: column; }
    .hl-card .hl-media { flex: none; aspect-ratio: 16/9; }
    .dd-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .dd-gallery figure:nth-child(odd) { grid-row: span 1; }
    .page-dev-diwali .page-hero .page-hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .glance-grid { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: 1fr; }
    .page-dev-diwali .page-hero { min-height: 420px; }
}

/* ============================================================
   Dev Diwali 2026 — immersive campaign page
   ============================================================ */
.page-dev-diwali {
    --dd-ink: #151326;
    --dd-night: #080817;
    --dd-indigo: #111735;
    --dd-maroon: #3c1423;
    --dd-saffron: #ef8f2f;
    --dd-amber: #f6c45d;
    --dd-paper: #fffaf1;
    --dd-line: rgba(79, 48, 30, 0.14);
    background: var(--dd-paper);
}
.page-home {
    --dd-ink: #151326;
    --dd-night: #080817;
    --dd-indigo: #111735;
    --dd-maroon: #3c1423;
    --dd-saffron: #ef8f2f;
    --dd-amber: #f6c45d;
    --dd-paper: #fffaf1;
    --dd-line: rgba(79, 48, 30, 0.14);
}
.page-dev-diwali main { overflow: hidden; }
.page-dev-diwali main h2 {
    color: var(--dd-ink);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}
.page-dev-diwali .section-eyebrow { color: #b96b26; margin-bottom: 18px; }
.page-dev-diwali :is(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--dd-amber);
    outline-offset: 3px;
}
.page-home :is(.dd-flip-showcase, .dd-night-section) h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}
.page-home :is(.dd-flip-showcase, .dd-night-section) .section-eyebrow {
    color: #d98b42;
    margin-bottom: 18px;
}
.page-home :is(.dd-flip-showcase, .dd-night-section) :is(a, button):focus-visible {
    outline: 3px solid var(--dd-amber);
    outline-offset: 3px;
}

/* Campaign hero */
.dd-hero {
    min-height: min(900px, calc(100vh - 74px));
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: var(--dd-hero-image);
    background-size: cover;
    background-position: center 38%;
    isolation: isolate;
}
.dd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 7, 22, 0.95) 0%, rgba(11, 9, 28, 0.86) 43%, rgba(34, 12, 26, 0.58) 72%, rgba(10, 8, 20, 0.36) 100%),
        linear-gradient(0deg, rgba(7, 7, 20, 0.76) 0%, transparent 45%);
}
.dd-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    z-index: -1;
    background: linear-gradient(0deg, rgba(7, 7, 20, 0.72), transparent);
}
.dd-hero-glow {
    position: absolute;
    width: min(720px, 70vw);
    height: min(720px, 70vw);
    right: -240px;
    bottom: -320px;
    border-radius: 50%;
    background: rgba(239, 143, 47, 0.28);
    filter: blur(100px);
    pointer-events: none;
}
.dd-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
    padding-top: 92px;
    padding-bottom: 112px;
}
.dd-hero-copy { max-width: 830px; }
.dd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.dd-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--dd-amber); box-shadow: 0 0 16px var(--dd-amber); }
.dd-hero-label {
    margin-top: 34px;
    color: var(--dd-amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.dd-hero h1 {
    margin-top: 9px;
    color: #fff;
    font-size: clamp(58px, 8vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-wrap: balance;
}
.dd-hero h1 em { color: #ffc86b; font-weight: 400; }
.dd-hero-lede {
    max-width: 680px;
    margin-top: 28px;
    color: rgba(255,255,255,0.8);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
}
.dd-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.dd-hero-actions .btn { min-width: 190px; }
.dd-hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 32px;
    color: rgba(255,255,255,0.67);
    font-size: 12px;
}
.dd-hero-assurance span { display: inline-flex; align-items: center; gap: 8px; }
.dd-hero-assurance span::before { content: '✓'; color: var(--dd-amber); font-weight: 800; }

.dd-countdown-card {
    align-self: end;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 28px;
    padding: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.32);
}
.dd-date-lockup { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.dd-date-day { font-family: var(--font-serif); font-size: 64px; line-height: 0.8; color: var(--dd-amber); }
.dd-date-lockup > span:last-child { display: flex; flex-direction: column; }
.dd-date-lockup strong { color: #fff; font-family: var(--font-serif); font-size: 23px; line-height: 1.1; }
.dd-date-lockup small { margin-top: 4px; color: rgba(255,255,255,0.58); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.dd-countdown-heading { display: flex; align-items: center; gap: 9px; margin: 24px 0 14px; color: rgba(255,255,255,0.62); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.dd-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ffb14e; box-shadow: 0 0 0 5px rgba(255,177,78,0.12); animation: dd-live 1.8s ease-in-out infinite; }
.dd-countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dd-countdown div { min-width: 0; padding: 13px 6px; border-radius: 12px; text-align: center; background: rgba(5,7,20,0.35); }
.dd-countdown strong { display: block; color: #fff; font-family: var(--font-serif); font-size: clamp(22px, 2.4vw, 34px); line-height: 1; font-variant-numeric: tabular-nums; }
.dd-countdown span { display: block; margin-top: 7px; color: rgba(255,255,255,0.5); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.dd-countdown-note { margin: 20px 0 17px; color: rgba(255,255,255,0.68); font-size: 12px; line-height: 1.7; }
.dd-text-link { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: #bd6b1e; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.dd-countdown-card .dd-text-link { color: var(--dd-amber); }
.dd-text-link span { transition: transform 0.25s ease; }
.dd-text-link:hover span { transform: translateX(4px); }
.dd-scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(255,255,255,0.55); font-size: 8px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.dd-scroll-cue span { width: 1px; height: 26px; background: linear-gradient(var(--dd-amber), transparent); animation: dd-scroll 1.8s ease-in-out infinite; }
.dd-sparks span { position: absolute; z-index: 1; width: 4px; height: 4px; border-radius: 50%; background: #ffd279; box-shadow: 0 0 15px 5px rgba(255,178,69,0.5); opacity: 0; animation: dd-float 8s linear infinite; }
.dd-sparks span:nth-child(1) { left: 6%; bottom: 5%; animation-delay: 0s; }
.dd-sparks span:nth-child(2) { left: 25%; bottom: 2%; animation-delay: 2.8s; }
.dd-sparks span:nth-child(3) { left: 43%; bottom: 8%; animation-delay: 5.2s; }
.dd-sparks span:nth-child(4) { right: 31%; bottom: 4%; animation-delay: 1.2s; }
.dd-sparks span:nth-child(5) { right: 15%; bottom: 10%; animation-delay: 4s; }
.dd-sparks span:nth-child(6) { right: 4%; bottom: 0; animation-delay: 6s; }
@keyframes dd-float { 0% { transform: translateY(0) scale(0.5); opacity: 0; } 15% { opacity: 0.8; } 75% { opacity: 0.55; } 100% { transform: translateY(-580px) translateX(45px) scale(1.2); opacity: 0; } }
@keyframes dd-live { 50% { box-shadow: 0 0 0 9px rgba(255,177,78,0); } }
@keyframes dd-scroll { 50% { transform: scaleY(0.45); opacity: 0.5; } }

/* Section navigation */
.dd-quick-nav { position: relative; z-index: 8; border-bottom: 1px solid var(--dd-line); background: rgba(255,250,241,0.96); }
.dd-quick-nav .container { display: flex; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.dd-quick-nav .container::-webkit-scrollbar { display: none; }
.dd-quick-nav a { flex: 0 0 auto; padding: 20px 24px; color: #6d5b52; font-size: 10px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; transition: color 0.25s ease, background 0.25s ease; }
.dd-quick-nav a:hover { color: #b65e19; background: rgba(239,143,47,0.07); }
.dd-quick-nav a.is-active { color: #b65e19; box-shadow: inset 0 -2px #d57828; }

/* Shared campaign headings */
.dd-section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); align-items: end; gap: 70px; margin-bottom: 54px; }
.dd-section-heading > p { max-width: 520px; justify-self: end; padding-bottom: 8px; color: #766b67; font-size: 15px; line-height: 1.8; }
.dd-section-heading-light h2 { color: #fff; }
.dd-section-heading-light > p { color: rgba(255,255,255,0.64); }

/* Story */
.dd-story { padding: 124px 0 142px; background: var(--dd-paper); }
.dd-story-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.dd-story-copy { max-width: 650px; }
.dd-story-copy .dd-lead { margin-top: 27px; color: #392f2b; font-family: var(--font-serif); font-size: clamp(20px, 2.1vw, 26px); line-height: 1.45; }
.dd-story-copy > p:not(.dd-lead) { margin-top: 18px; color: #756a65; font-size: 14px; line-height: 1.9; }
.dd-story-copy > p strong { color: var(--dd-ink); }
.dd-story-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--dd-line); }
.dd-story-facts strong { display: block; color: #b65e19; font-family: var(--font-serif); font-size: 25px; }
.dd-story-facts span { display: block; margin-top: 3px; color: #80736c; font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.08em; }
.dd-story-collage { position: relative; min-height: 570px; }
.dd-story-collage figure { margin: 0; overflow: hidden; background: #eee; }
.dd-collage-main { position: absolute; top: 0; right: 0; width: 82%; height: 470px; border-radius: 220px 220px 26px 26px; box-shadow: 0 30px 70px rgba(54,25,16,0.2); }
.dd-collage-main img, .dd-collage-small img { width: 100%; height: 100%; object-fit: cover; }
.dd-collage-small { position: absolute; left: 0; bottom: 0; width: 46%; height: 260px; border: 8px solid var(--dd-paper); border-radius: 120px 120px 18px 18px; box-shadow: 0 20px 50px rgba(54,25,16,0.16); }
.dd-collage-note { position: absolute; right: -16px; bottom: 22px; padding: 17px 20px; border: 1px solid rgba(163,94,29,0.22); border-radius: 16px; background: rgba(255,250,241,0.92); backdrop-filter: blur(12px); color: #684a39; font-family: var(--font-serif); font-size: 15px; line-height: 1.5; box-shadow: var(--shadow-soft); }
.dd-collage-note span { color: var(--dd-saffron); margin-right: 5px; }

/* Immersive moments */
.dd-night-section { position: relative; padding: 120px 0; background: var(--dd-night); }
.dd-night-section::before, .dd-gallery-section::before, .dd-contact::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 20%, rgba(239,143,47,0.13), transparent 32%), radial-gradient(circle at 80% 78%, rgba(125,57,89,0.18), transparent 38%); }
.dd-night-section .container, .dd-gallery-section .container, .dd-contact .container { position: relative; z-index: 1; }
.dd-moment-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 300px; gap: 18px; }
.dd-moment-card { grid-column: span 5; position: relative; min-height: 300px; overflow: hidden; border-radius: 22px; background: #18162a; }
.dd-moment-large { grid-column: span 7; grid-row: span 2; }
.dd-moment-wide { grid-column: span 5; }
.dd-moment-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,14,0.9) 0%, rgba(5,5,14,0.08) 70%); }
.dd-moment-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.6s ease; }
.dd-moment-card:hover img { transform: scale(1.055); filter: saturate(1.12); }
.dd-moment-overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 26px 28px; }
.dd-moment-overlay > span { color: var(--dd-amber); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }
.dd-moment-overlay h3 { margin-top: 5px; color: #fff; font-size: clamp(23px, 2.5vw, 34px); }
.dd-moment-overlay p { max-height: 0; margin-top: 0; overflow: hidden; color: rgba(255,255,255,0.72); font-size: 12px; line-height: 1.7; opacity: 0; transition: max-height 0.45s ease, margin 0.45s ease, opacity 0.35s ease; }
.dd-moment-card:hover .dd-moment-overlay p { max-height: 70px; margin-top: 8px; opacity: 1; }

/* Journey */
.dd-journey { position: relative; overflow: hidden; padding: 124px 0; background: radial-gradient(circle at 8% 10%, rgba(239,143,47,0.1), transparent 27%), linear-gradient(180deg, #fff 0%, #fffaf2 100%); }
.dd-journey::before { content: ''; position: absolute; width: 460px; height: 460px; right: -250px; bottom: 8%; border: 1px solid rgba(213,120,40,0.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(213,120,40,0.025), 0 0 0 140px rgba(213,120,40,0.018); pointer-events: none; }
.dd-itinerary-roadmap { position: relative; max-width: 1080px; margin: 66px auto 0; }
.dd-itinerary-roadmap::before { content: ''; position: absolute; top: 28px; bottom: 28px; left: 50%; width: 2px; background: linear-gradient(180deg, transparent, #e4ad6a 4%, #c86522 50%, #e4ad6a 96%, transparent); transform: translateX(-50%); }
.dd-itinerary-card { position: relative; width: calc(50% - 58px); min-height: 174px; margin-bottom: 30px; padding: 28px 30px; border: 1px solid rgba(89,53,30,0.12); border-radius: 22px; background: rgba(255,255,255,0.9); box-shadow: 0 16px 46px rgba(65,38,22,0.08); backdrop-filter: blur(10px); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.dd-itinerary-card:nth-child(even) { margin-left: auto; }
.dd-itinerary-card:hover { border-color: rgba(213,120,40,0.35); box-shadow: 0 24px 60px rgba(65,38,22,0.14); transform: translateY(-5px); }
.dd-itinerary-card::after { content: ''; position: absolute; top: 38px; width: 58px; height: 1px; background: linear-gradient(90deg, rgba(213,120,40,0.25), #d57828); }
.dd-itinerary-card:nth-child(odd)::after { right: -58px; }
.dd-itinerary-card:nth-child(even)::after { left: -58px; transform: scaleX(-1); }
.dd-itinerary-node { position: absolute; z-index: 2; top: 20px; display: grid; place-items: center; width: 38px; height: 38px; border: 5px solid #fffaf2; border-radius: 50%; background: linear-gradient(135deg, #e6983e, #b95119); box-shadow: 0 0 0 1px #d57828, 0 9px 24px rgba(190,82,25,0.22); color: #fff; font-family: var(--font-serif); font-size: 12px; font-weight: 700; }
.dd-itinerary-card:nth-child(odd) .dd-itinerary-node { right: -77px; }
.dd-itinerary-card:nth-child(even) .dd-itinerary-node { left: -77px; }
.dd-itinerary-scope { display: inline-flex; align-items: center; min-height: 25px; padding: 5px 10px; border: 1px solid rgba(197,101,32,0.17); border-radius: 999px; background: #fff5e8; color: #a55221; font-size: 8px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.dd-itinerary-card h3 { margin-top: 14px; color: var(--dd-ink); font-size: clamp(20px, 2.3vw, 27px); line-height: 1.16; }
.dd-itinerary-card p { margin-top: 10px; color: #766b65; font-size: 12px; line-height: 1.75; }
.dd-itinerary-card ul { display: grid; gap: 7px; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid rgba(89,53,30,0.09); list-style: none; }
.dd-itinerary-card li { position: relative; padding-left: 17px; color: #5f5550; font-size: 10px; line-height: 1.55; }
.dd-itinerary-card li::before { content: '✦'; position: absolute; left: 0; top: 1px; color: #d57828; font-size: 8px; }
.dd-itinerary-note { display: flex; align-items: flex-start; gap: 14px; max-width: 920px; margin: 25px auto 0; padding: 20px 23px; border: 1px solid rgba(213,120,40,0.2); border-radius: 18px; background: #fff5e6; }
.dd-itinerary-note > span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: #d57828; color: #fff; font-size: 11px; }
.dd-itinerary-note p { color: #705d50; font-size: 11px; line-height: 1.7; }
.dd-itinerary-note strong { color: var(--dd-ink); }

/* Packages */
.dd-experiences { position: relative; padding: 124px 0; background: #f6eddf; }
.dd-experiences::before { content: ''; position: absolute; width: 480px; height: 480px; top: -220px; right: -240px; border-radius: 50%; border: 1px solid rgba(187,100,33,0.14); box-shadow: 0 0 0 70px rgba(187,100,33,0.03), 0 0 0 140px rgba(187,100,33,0.02); }
.dd-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.dd-package-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid rgba(93,57,36,0.12); border-radius: 24px; background: #fffdf9; box-shadow: 0 16px 50px rgba(64,37,22,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dd-package-card:hover { transform: translateY(-8px); box-shadow: 0 26px 70px rgba(64,37,22,0.15); }
.dd-package-featured { background: var(--dd-indigo); border-color: rgba(246,196,93,0.4); }
.dd-package-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.dd-package-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,8,20,0.55), transparent 55%); }
.dd-package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dd-package-card:hover .dd-package-image img { transform: scale(1.05); }
.dd-package-image > span { position: absolute; z-index: 2; left: 18px; bottom: 16px; padding: 7px 11px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; background: rgba(8,8,20,0.5); backdrop-filter: blur(10px); color: #fff; font-size: 8px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.dd-package-body { display: flex; flex-direction: column; flex: 1; padding: 30px 30px 32px; }
.dd-package-number { color: #bc6d28; font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.dd-package-body h3 { margin-top: 8px; color: var(--dd-ink); font-size: 28px; }
.dd-package-body > p:not(.dd-package-number) { margin-top: 13px; color: #756b65; font-size: 13px; line-height: 1.75; }
.dd-package-body ul { margin: 22px 0 28px; padding-top: 20px; border-top: 1px solid rgba(81,52,34,0.12); }
.dd-package-body li { position: relative; margin-top: 10px; padding-left: 20px; color: #514945; font-size: 12px; }
.dd-package-body li::before { content: '✦'; position: absolute; left: 0; color: #c57328; font-size: 9px; }
.dd-package-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; }
.dd-package-featured :is(.dd-package-body h3, .dd-package-body > p:not(.dd-package-number), .dd-package-body li) { color: #fff; }
.dd-package-featured .dd-package-body > p:not(.dd-package-number), .dd-package-featured .dd-package-body li { color: rgba(255,255,255,0.68); }
.dd-package-featured .dd-package-body ul { border-color: rgba(255,255,255,0.12); }
.dd-package-featured .dd-text-link { color: var(--dd-amber); }
.dd-availability-note { max-width: 820px; margin: 30px auto 0; color: #7a6a5e; font-size: 12px; text-align: center; line-height: 1.7; }
.dd-availability-note span { color: #c76f25; margin-right: 6px; }

/* Gallery */
.dd-gallery-section { position: relative; padding: 124px 0; background: #0b0b1b; }
.dd-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 270px); gap: 14px; }
.dd-gallery-item { position: relative; grid-column: span 3; min-width: 0; min-height: 0; overflow: hidden; border: 0; border-radius: 18px; padding: 0; background: #161526; color: #fff; text-align: left; }
.dd-gallery-hero { grid-column: span 6; grid-row: span 2; }
.dd-gallery-wide { grid-column: span 5; }
.dd-gallery-item:not(.dd-gallery-hero):last-child { grid-column: span 4; }
.dd-gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,13,0.7), transparent 60%); transition: background 0.35s ease; }
.dd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.4s ease; }
.dd-gallery-item:hover img { transform: scale(1.05); filter: saturate(1.16); }
.dd-gallery-item > span { position: absolute; z-index: 2; left: 18px; bottom: 15px; font-family: var(--font-serif); font-size: 16px; }
.dd-gallery-item > span::after { content: ' ↗'; color: var(--dd-amber); font-family: var(--font-sans); }

/* Planning and FAQ */
.dd-plan { padding: 124px 0; background: var(--dd-paper); }
.dd-plan-grid { display: grid; grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.dd-plan-intro { position: sticky; top: 120px; }
.dd-plan-intro > p { max-width: 510px; margin-top: 25px; color: #756b65; font-size: 14px; line-height: 1.85; }
.dd-plan-image { height: 280px; margin-top: 34px; overflow: hidden; border-radius: 160px 160px 20px 20px; }
.dd-plan-image img { width: 100%; height: 100%; object-fit: cover; }
.dd-tip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dd-tip-grid article { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--dd-line); border-radius: 16px; background: rgba(255,255,255,0.7); }
.dd-tip-grid article > span { color: #c8752c; font-family: var(--font-serif); font-size: 25px; line-height: 1; }
.dd-tip-grid h3 { color: var(--dd-ink); font-size: 17px; }
.dd-tip-grid p { margin-top: 7px; color: #7d726c; font-size: 11.5px; line-height: 1.7; }
.dd-faq { margin-top: 44px; }
.dd-faq > h3 { margin-bottom: 18px; color: var(--dd-ink); font-size: 24px; }
.dd-faq-item { border-top: 1px solid var(--dd-line); }
.dd-faq-item:last-child { border-bottom: 1px solid var(--dd-line); }
.dd-faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; border: 0; padding: 20px 0; background: transparent; color: var(--dd-ink); font-size: 13px; font-weight: 700; text-align: left; }
.dd-faq-item button span:last-child { color: #c8752c; font-family: var(--font-serif); font-size: 24px; font-weight: 400; transition: transform 0.3s ease; }
.dd-faq-item button[aria-expanded='true'] span:last-child { transform: rotate(45deg); }
.dd-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.dd-faq-answer > p { min-height: 0; overflow: hidden; color: #786e68; font-size: 12.5px; line-height: 1.75; }
.dd-faq-item.is-open .dd-faq-answer { grid-template-rows: 1fr; }
.dd-faq-item.is-open .dd-faq-answer > p { padding-bottom: 21px; }

/* Contact */
.dd-contact { position: relative; padding: 128px 0; background: linear-gradient(135deg, #080817 0%, #111735 58%, #341425 100%); }
.dd-contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr); gap: clamp(60px, 9vw, 130px); align-items: center; }
.page-dev-diwali main .dd-contact-copy h2 {
    color: #fff;
    text-shadow: 0 16px 44px rgba(0,0,0,0.28);
}
.dd-contact-copy > p { max-width: 560px; margin-top: 25px; color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.85; }
.dd-contact-direct { display: grid; gap: 12px; margin-top: 34px; }
.dd-contact-direct a { display: flex; flex-direction: column; align-items: flex-start; width: fit-content; }
.dd-contact-direct small { color: rgba(255,255,255,0.45); font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.dd-contact-direct strong { margin-top: 2px; color: #fff; font-family: var(--font-serif); font-size: 18px; font-weight: 500; }
.dd-contact-direct a:hover strong { color: var(--dd-amber); }
.dd-contact-promise { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.dd-contact-promise span { padding: 8px 11px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; color: rgba(255,255,255,0.62); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.dd-enquiry-card { position: relative; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(255,255,255,0.14); border-radius: 28px; background: #fffdf9; box-shadow: 0 35px 100px rgba(0,0,0,0.34); }
.dd-form-heading { margin-bottom: 26px; }
.dd-form-heading > span { color: #be6b24; font-size: 9px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.dd-form-heading h3 { margin-top: 7px; color: var(--dd-ink); font-size: clamp(24px, 3vw, 34px); line-height: 1.25; }
.dd-enquiry-card .form-label { color: #5e514b; font-size: 10px; letter-spacing: 0.05em; }
.dd-enquiry-card .form-control { border-color: rgba(83,54,37,0.18); background: #fff; color: var(--dd-ink); }
.dd-enquiry-card .form-control:focus { border-color: #cf792c; box-shadow: 0 0 0 3px rgba(207,121,44,0.1); }
.dd-enquiry-card textarea.form-control { min-height: 112px; resize: vertical; }
.dd-enquiry-card .form-msg { margin-bottom: 16px; }
.dd-form-note { margin-top: 13px; color: #8a7e76; font-size: 10px; text-align: center; }
.dd-mobile-cta { display: none; }

/* Gallery lightbox */
.dd-lightbox { position: fixed; z-index: 10000; inset: 0; display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px; align-items: center; padding: 34px; background: rgba(4,4,12,0.95); backdrop-filter: blur(14px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; }
.dd-lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.dd-lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; max-height: calc(100vh - 70px); margin: 0; }
.dd-lightbox figure img { max-width: 100%; max-height: calc(100vh - 130px); border-radius: 10px; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,0.5); }
.dd-lightbox figcaption { margin-top: 16px; color: rgba(255,255,255,0.75); font-family: var(--font-serif); font-size: 16px; }
.dd-lightbox-close, .dd-lightbox-nav { border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; }
.dd-lightbox-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; font-size: 28px; line-height: 1; }
.dd-lightbox-nav { width: 48px; height: 48px; justify-self: center; font-size: 31px; line-height: 1; }
body.dd-lightbox-open { overflow: hidden; }

/* Responsive campaign layout */
@media (max-width: 1100px) {
    .dd-hero-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
    .dd-story-grid { gap: 60px; }
    .dd-itinerary-roadmap { max-width: 940px; }
    .dd-package-body { padding: 25px 22px 27px; }
    .dd-package-actions { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 900px) {
    .dd-hero { min-height: auto; }
    .dd-hero-grid { grid-template-columns: 1fr; padding-top: 92px; padding-bottom: 100px; }
    .dd-countdown-card { width: min(100%, 520px); align-self: auto; margin: 0; }
    .dd-scroll-cue { display: none; }
    .dd-story-grid, .dd-plan-grid, .dd-contact-grid { grid-template-columns: 1fr; }
    .dd-story-copy { max-width: none; }
    .dd-story-collage { width: min(100%, 650px); margin: 0 auto; }
    .dd-section-heading { grid-template-columns: 1fr; gap: 24px; }
    .dd-section-heading > p { justify-self: start; }
    .dd-moment-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 330px; }
    .dd-moment-card, .dd-moment-large, .dd-moment-wide { grid-column: span 1; grid-row: span 1; }
    .dd-moment-overlay p { max-height: 70px; margin-top: 8px; opacity: 1; }
    .dd-package-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
    .dd-package-card { display: grid; grid-template-columns: 0.9fr 1.1fr; }
    .dd-package-image { aspect-ratio: auto; min-height: 100%; }
    .dd-package-actions { flex-direction: row; align-items: center; }
    .dd-gallery { grid-template-rows: repeat(3, 240px); }
    .dd-gallery-item, .dd-gallery-item:not(.dd-gallery-hero):last-child { grid-column: span 6; }
    .dd-gallery-hero { grid-column: span 12; grid-row: span 1; }
    .dd-plan-intro { position: static; }
    .dd-plan-image { width: min(100%, 520px); }
    .dd-contact-grid { gap: 55px; }
}
@media (max-width: 640px) {
    .page-dev-diwali main h2,
    .page-home :is(.dd-flip-showcase, .dd-night-section) h2 { font-size: clamp(34px, 11vw, 48px); }
    .dd-hero { background-position: 61% center; }
    .dd-hero::before { background: linear-gradient(90deg, rgba(6,7,22,0.96), rgba(10,9,24,0.76)), linear-gradient(0deg, rgba(7,7,20,0.65), transparent); }
    .dd-hero-grid { padding-top: 68px; padding-bottom: 72px; }
    .dd-kicker { font-size: 8px; letter-spacing: 0.1em; }
    .dd-hero-label { margin-top: 28px; }
    .dd-hero h1 { font-size: clamp(49px, 15vw, 72px); }
    .dd-hero-lede { margin-top: 22px; font-size: 14px; }
    .dd-hero-actions { flex-direction: column; align-items: stretch; }
    .dd-hero-actions .btn { width: 100%; }
    .dd-hero-assurance { display: grid; gap: 9px; }
    .dd-countdown-card { padding: 24px 20px; }
    .dd-date-day { font-size: 52px; }
    .dd-countdown strong { font-size: 23px; }
    .dd-quick-nav .container { justify-content: flex-start; padding: 0 10px; }
    .dd-quick-nav a { padding: 17px 14px; }
    .dd-story, .dd-night-section, .dd-journey, .dd-experiences, .dd-gallery-section, .dd-plan, .dd-contact { padding: 84px 0; }
    .dd-story { padding-bottom: 104px; }
    .dd-story-facts { gap: 8px; }
    .dd-story-facts strong { font-size: 21px; }
    .dd-story-collage { min-height: 420px; margin-top: 18px; }
    .dd-collage-main { width: 88%; height: 350px; }
    .dd-collage-small { width: 46%; height: 190px; border-width: 5px; }
    .dd-collage-note { right: 0; bottom: -13px; font-size: 12px; }
    .dd-moment-grid { grid-template-columns: 1fr; grid-auto-rows: 370px; }
    .dd-itinerary-roadmap { margin-top: 46px; padding-left: 48px; }
    .dd-itinerary-roadmap::before { left: 18px; transform: none; }
    .dd-itinerary-card, .dd-itinerary-card:nth-child(even) { width: 100%; min-height: 0; margin-left: 0; margin-bottom: 22px; padding: 24px 22px; }
    .dd-itinerary-card::after, .dd-itinerary-card:nth-child(even)::after { top: 32px; left: -30px; width: 30px; transform: none; }
    .dd-itinerary-card:nth-child(odd) .dd-itinerary-node, .dd-itinerary-card:nth-child(even) .dd-itinerary-node { top: 13px; left: -49px; right: auto; }
    .dd-itinerary-note { margin-top: 14px; }
    .dd-package-card { display: flex; }
    .dd-package-image { aspect-ratio: 16 / 10; min-height: 0; }
    .dd-package-actions { align-items: flex-start; flex-direction: column; }
    .dd-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px repeat(3, 180px); }
    .dd-gallery-item, .dd-gallery-item:not(.dd-gallery-hero):last-child, .dd-gallery-wide { grid-column: span 1; }
    .dd-gallery-hero { grid-column: span 2; }
    .dd-tip-grid { grid-template-columns: 1fr; }
    .dd-plan-image { height: 240px; }
    .dd-enquiry-card { margin: 0 -8px; border-radius: 22px; }
    .dd-contact-direct strong { font-size: 16px; word-break: break-word; }
    .dd-mobile-cta { position: fixed; z-index: 54; left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: 0.38fr 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; background: #0b0c21; box-shadow: 0 14px 45px rgba(0,0,0,0.34); opacity: 0; transform: translateY(25px); visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
    .dd-mobile-cta.is-visible { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
    .dd-mobile-cta a { padding: 14px 12px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-align: center; text-transform: uppercase; }
    .dd-mobile-plan { border-radius: 999px; background: var(--dd-amber); color: #201425 !important; }
    .page-dev-diwali .site-footer { padding-bottom: 72px; }
    .dd-lightbox { grid-template-columns: 48px minmax(0, 1fr) 48px; padding: 20px 5px; }
    .dd-lightbox-nav { width: 40px; height: 40px; }
}
@media (max-width: 410px) {
    .dd-countdown-card { margin-left: -5px; margin-right: -5px; }
    .dd-countdown { gap: 5px; }
    .dd-countdown div { padding-left: 3px; padding-right: 3px; }
    .dd-story-facts { grid-template-columns: 1fr; }
    .dd-story-facts div { display: flex; align-items: baseline; gap: 10px; }
    .dd-story-facts span { display: inline; }
    .dd-gallery { display: flex; flex-direction: column; }
    .dd-gallery-item { height: 230px; flex: none; }
    .dd-gallery-hero { height: 310px; }
}
@media (prefers-reduced-motion: reduce) {
    .dd-sparks, .dd-live-dot, .dd-scroll-cue span { animation: none !important; }
    .dd-moment-card img, .dd-package-image img, .dd-gallery-item img { transition: none; }
}

/* ============================================================
   Moving Memories — one carousel, three 360° motion variations
   ============================================================ */
.dd-flip-showcase {
    position: relative;
    padding: 126px 0 132px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 18%, rgba(154,62,56,0.22), transparent 32%),
        radial-gradient(circle at 83% 72%, rgba(50,64,151,0.2), transparent 38%),
        #070715;
}
.dd-flip-showcase::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.28;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}
.dd-flip-showcase .container { position: relative; z-index: 2; }
.dd-flip-aura { position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: 0.55; }
.dd-flip-aura-one { width: 430px; height: 430px; top: 21%; left: -210px; background: rgba(238,126,40,0.22); animation: dd-aura-drift-one 12s ease-in-out infinite alternate; }
.dd-flip-aura-two { width: 520px; height: 520px; right: -260px; bottom: 4%; background: rgba(111,71,177,0.2); animation: dd-aura-drift-two 15s ease-in-out infinite alternate; }

.dd-carousel-mode-switcher {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 980px;
    margin: 0 auto 28px;
}
.dd-mode-button {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 17px;
    background: rgba(255,255,255,0.045);
    color: #fff;
    text-align: left;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.dd-mode-button:hover { transform: translateY(-3px); border-color: rgba(246,196,93,0.42); background: rgba(255,255,255,0.08); }
.dd-mode-button.is-active { border-color: rgba(246,196,93,0.65); background: linear-gradient(135deg, rgba(239,143,47,0.2), rgba(255,255,255,0.08)); box-shadow: 0 14px 38px rgba(0,0,0,0.2), inset 0 0 28px rgba(246,196,93,0.06); }
.dd-mode-button > small { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid rgba(246,196,93,0.38); border-radius: 50%; color: var(--dd-amber); font-family: var(--font-serif); font-size: 15px; }
.dd-mode-button > span { display: flex; min-width: 0; flex-direction: column; }
.dd-mode-button strong { color: #fff; font-family: var(--font-serif); font-size: 16px; line-height: 1.15; }
.dd-mode-button em { margin-top: 3px; overflow: hidden; color: rgba(255,255,255,0.45); font-size: 8px; font-style: normal; font-weight: 700; letter-spacing: 0.1em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }

.dd-flip-carousel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
    grid-template-rows: minmax(540px, 1fr) auto;
    max-width: 1260px;
    min-height: 680px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022));
    box-shadow: 0 42px 120px rgba(0,0,0,0.48), inset 0 1px rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
}
.dd-flip-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 67% 48%, rgba(246,196,93,0.1), transparent 26%);
    transition: background 0.5s ease;
}
.dd-flip-carousel[data-variant='river']::before { background: radial-gradient(ellipse at 67% 52%, rgba(69,131,201,0.15), transparent 32%); }
.dd-flip-carousel[data-variant='portal']::before { background: radial-gradient(circle at 67% 48%, rgba(203,91,74,0.17), transparent 28%); }

.dd-carousel-mode-copy {
    position: relative;
    z-index: 7;
    align-self: center;
    padding: 38px 18px 38px 36px;
}
.dd-carousel-mode-copy > span { color: var(--dd-amber); font-size: 8px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.dd-carousel-mode-copy h3 { margin-top: 10px; color: #fff; font-size: clamp(25px, 3vw, 39px); line-height: 1.08; }
.dd-carousel-mode-copy p { max-width: 250px; margin-top: 14px; color: rgba(255,255,255,0.57); font-size: 12px; line-height: 1.75; }

.dd-carousel-stage {
    position: relative;
    z-index: 3;
    min-width: 0;
    height: 540px;
    perspective: 1600px;
    perspective-origin: 52% 46%;
    transform-style: preserve-3d;
    touch-action: pan-y;
}
.dd-carousel-orbit-lines { position: absolute; inset: 7% 4% 2%; pointer-events: none; }
.dd-carousel-orbit-lines span { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(246,196,93,0.11); border-radius: 50%; transform: translate(-50%,-50%) rotateX(72deg); transition: border-radius 0.5s ease, transform 0.5s ease, border-color 0.5s ease; }
.dd-carousel-orbit-lines span:nth-child(1) { width: 48%; height: 48%; }
.dd-carousel-orbit-lines span:nth-child(2) { width: 72%; height: 72%; }
.dd-carousel-orbit-lines span:nth-child(3) { width: 96%; height: 96%; }
[data-variant='river'] .dd-carousel-orbit-lines span { border-color: rgba(109,180,231,0.12); border-radius: 45% 55% 50% 50%; transform: translate(-50%,-50%) rotate(-8deg) scaleY(0.55); }
[data-variant='portal'] .dd-carousel-orbit-lines span { border-color: rgba(246,157,112,0.14); border-radius: 48% 48% 12% 12%; transform: translate(-50%,-50%) rotate(45deg) scale(0.7); }

.dd-carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: min(56vw, 700px);
    height: min(38vw, 470px);
    min-height: 390px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%,-50%,-700px) scale(0.15);
    transform-origin: center;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform, opacity, filter;
}
.dd-carousel-slide figure { position: relative; width: 100%; height: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.25); border-radius: 29px; background: #171525; box-shadow: 0 28px 80px rgba(0,0,0,0.44); transform-style: preserve-3d; }
.dd-carousel-slide figure::before { content: ''; position: absolute; z-index: 2; inset: 0; background: linear-gradient(0deg, rgba(6,5,15,0.9), transparent 53%); pointer-events: none; }
.dd-carousel-slide figure::after { content: ''; position: absolute; z-index: 3; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,215,126,0.06), inset 0 -90px 110px rgba(10,5,18,0.15); pointer-events: none; }
.dd-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.dd-carousel-slide figcaption { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 27px 29px; color: #fff; transform: translateZ(28px); }
.dd-carousel-slide figcaption > span { color: var(--dd-amber); font-size: 9px; font-weight: 800; letter-spacing: 0.13em; }
.dd-carousel-slide figcaption div { display: flex; flex-direction: column; text-align: right; }
.dd-carousel-slide figcaption small { color: rgba(255,255,255,0.65); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.dd-carousel-slide figcaption strong { margin-top: 4px; color: #fff; font-family: var(--font-serif); font-size: clamp(21px, 2.6vw, 34px); line-height: 1.05; }

.dd-carousel-slide.is-active { z-index: 5; opacity: 1; pointer-events: auto; transform: translate3d(-50%,-50%,0) scale(1) rotateX(0) rotateY(0); filter: saturate(1.05); }
.dd-carousel-slide.is-next { z-index: 2; opacity: 0.44; transform: translate3d(15%,-50%,-430px) scale(0.48) rotateY(-28deg); filter: saturate(0.62) brightness(0.7); }
.dd-carousel-slide.is-prev { z-index: 1; opacity: 0.24; transform: translate3d(-114%,-50%,-520px) scale(0.36) rotateY(25deg); filter: saturate(0.4) brightness(0.5); }
[data-variant='river'] .dd-carousel-slide.is-next { transform: translate3d(13%,-29%,-440px) scale(0.45) rotateX(-34deg) rotateZ(6deg); }
[data-variant='river'] .dd-carousel-slide.is-prev { transform: translate3d(-112%,-68%,-500px) scale(0.34) rotateX(30deg) rotateZ(-6deg); }
[data-variant='portal'] .dd-carousel-slide.is-next { transform: translate3d(16%,-50%,-540px) scale(0.38) rotateY(66deg); opacity: 0.36; }
[data-variant='portal'] .dd-carousel-slide.is-prev { transform: translate3d(-116%,-50%,-570px) scale(0.3) rotateY(-66deg); opacity: 0.2; }

/* Forward movement: right → centre flip → left exit. */
[data-variant='orbit'] .dd-carousel-slide.is-entering { z-index: 6; animation: dd-orbit-enter 1.55s cubic-bezier(.2,.72,.18,1) both; }
[data-variant='orbit'] .dd-carousel-slide.is-exiting { z-index: 5; animation: dd-orbit-exit 1.55s cubic-bezier(.55,.05,.25,1) both; }
[data-variant='river'] .dd-carousel-slide.is-entering { z-index: 6; animation: dd-river-enter 1.65s cubic-bezier(.2,.74,.18,1) both; }
[data-variant='river'] .dd-carousel-slide.is-exiting { z-index: 5; animation: dd-river-exit 1.65s cubic-bezier(.55,.05,.25,1) both; }
[data-variant='portal'] .dd-carousel-slide.is-entering { z-index: 6; animation: dd-portal-enter 1.65s cubic-bezier(.2,.78,.16,1) both; }
[data-variant='portal'] .dd-carousel-slide.is-exiting { z-index: 5; animation: dd-portal-exit 1.65s cubic-bezier(.55,.05,.25,1) both; }

/* Backward controls mirror the same physical movement. */
[data-variant='orbit'] .dd-carousel-slide.is-entering-back { z-index: 6; animation: dd-orbit-exit 1.55s cubic-bezier(.2,.72,.18,1) reverse both; }
[data-variant='orbit'] .dd-carousel-slide.is-exiting-back { z-index: 5; animation: dd-orbit-enter 1.55s cubic-bezier(.55,.05,.25,1) reverse both; }
[data-variant='river'] .dd-carousel-slide.is-entering-back { z-index: 6; animation: dd-river-exit 1.65s cubic-bezier(.2,.74,.18,1) reverse both; }
[data-variant='river'] .dd-carousel-slide.is-exiting-back { z-index: 5; animation: dd-river-enter 1.65s cubic-bezier(.55,.05,.25,1) reverse both; }
[data-variant='portal'] .dd-carousel-slide.is-entering-back { z-index: 6; animation: dd-portal-exit 1.65s cubic-bezier(.2,.78,.16,1) reverse both; }
[data-variant='portal'] .dd-carousel-slide.is-exiting-back { z-index: 5; animation: dd-portal-enter 1.65s cubic-bezier(.55,.05,.25,1) reverse both; }
.dd-carousel-slide.is-mode-pulsing { z-index: 6; animation: dd-mode-pulse 0.85s cubic-bezier(.2,.8,.2,1) both; }

.dd-carousel-toolbar {
    position: relative;
    z-index: 9;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 20px 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.09);
    background: rgba(3,4,13,0.32);
}
.dd-carousel-actions { display: flex; align-items: center; gap: 8px; }
.dd-carousel-arrow, .dd-carousel-play { height: 42px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.055); color: #fff; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.dd-carousel-arrow { width: 42px; border-radius: 50%; font-size: 18px; }
.dd-carousel-play { display: inline-flex; align-items: center; gap: 8px; padding: 0 16px; border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.dd-carousel-arrow:hover, .dd-carousel-play:hover { transform: translateY(-2px); border-color: rgba(246,196,93,0.5); background: rgba(246,196,93,0.11); }
.dd-pause-icon { color: var(--dd-amber); font-weight: 900; letter-spacing: -0.15em; }
.dd-carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.dd-carousel-dots button { display: grid; place-items: center; width: 28px; height: 24px; border: 0; padding: 0; background: transparent; }
.dd-carousel-dots button span { display: block; width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.28); transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.dd-carousel-dots button.is-active span { width: 26px; background: var(--dd-amber); box-shadow: 0 0 16px rgba(246,196,93,0.48); }
.dd-carousel-hint { color: rgba(255,255,255,0.38); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.dd-carousel-status { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@keyframes dd-orbit-enter {
    0% { opacity: 0; transform: translate3d(24%,-50%,-680px) scale(0.18) rotateY(0deg); filter: blur(8px) brightness(0.5); }
    48% { opacity: 1; transform: translate3d(-40%,-50%,-110px) scale(0.76) rotateY(0deg); filter: blur(0) brightness(0.9); }
    84% { opacity: 1; transform: translate3d(-50%,-50%,35px) scale(1.08) rotateY(360deg); filter: brightness(1.08); }
    100% { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1) rotateY(360deg); filter: brightness(1); }
}
@keyframes dd-orbit-exit {
    0%, 28% { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1) rotateY(0deg); filter: blur(0); }
    78% { opacity: 0.72; transform: translate3d(-93%,-50%,-260px) scale(0.58) rotateY(-360deg); filter: blur(1px) brightness(0.72); }
    100% { opacity: 0; transform: translate3d(-145%,-50%,-680px) scale(0.16) rotateY(-360deg); filter: blur(8px) brightness(0.4); }
}
@keyframes dd-river-enter {
    0% { opacity: 0; transform: translate3d(22%,-18%,-680px) scale(0.16) rotateX(0deg) rotateZ(9deg); filter: blur(8px); }
    50% { opacity: 1; transform: translate3d(-38%,-63%,-120px) scale(0.74) rotateX(0deg) rotateZ(3deg); filter: blur(0); }
    84% { transform: translate3d(-50%,-50%,40px) scale(1.08) rotateX(360deg) rotateZ(0); }
    100% { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1) rotateX(360deg) rotateZ(0); }
}
@keyframes dd-river-exit {
    0%, 28% { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1) rotateX(0deg) rotateZ(0); }
    78% { opacity: 0.7; transform: translate3d(-96%,-28%,-280px) scale(0.54) rotateX(-360deg) rotateZ(-7deg); }
    100% { opacity: 0; transform: translate3d(-148%,-18%,-680px) scale(0.15) rotateX(-360deg) rotateZ(-10deg); filter: blur(8px); }
}
@keyframes dd-portal-enter {
    0% { opacity: 0; clip-path: inset(0 47% round 30px); transform: translate3d(25%,-50%,-760px) scale(0.12) rotate3d(1,1,0,0deg); filter: blur(10px) brightness(1.5); }
    46% { opacity: 0.85; clip-path: inset(0 28% round 30px); transform: translate3d(-36%,-50%,-160px) scale(0.68) rotate3d(1,1,0,0deg); }
    84% { opacity: 1; clip-path: inset(0 round 30px); transform: translate3d(-50%,-50%,45px) scale(1.1) rotate3d(1,1,0,360deg); filter: blur(0) brightness(1.12); }
    100% { opacity: 1; clip-path: inset(0 round 30px); transform: translate3d(-50%,-50%,0) scale(1) rotate3d(1,1,0,360deg); filter: brightness(1); }
}
@keyframes dd-portal-exit {
    0%, 28% { opacity: 1; clip-path: inset(0 round 30px); transform: translate3d(-50%,-50%,0) scale(1) rotate3d(1,-1,0,0deg); }
    78% { opacity: 0.65; clip-path: inset(0 28% round 30px); transform: translate3d(-97%,-50%,-320px) scale(0.52) rotate3d(1,-1,0,-360deg); }
    100% { opacity: 0; clip-path: inset(0 48% round 30px); transform: translate3d(-150%,-50%,-760px) scale(0.12) rotate3d(1,-1,0,-360deg); filter: blur(10px); }
}
@keyframes dd-mode-pulse {
    0% { transform: translate3d(-50%,-50%,0) scale(1) rotateY(0); }
    48% { transform: translate3d(-50%,-50%,45px) scale(1.06) rotateY(180deg); filter: brightness(1.18); }
    100% { transform: translate3d(-50%,-50%,0) scale(1) rotateY(360deg); }
}
@keyframes dd-aura-drift-one { to { transform: translate3d(180px,80px,0) scale(1.18); } }
@keyframes dd-aura-drift-two { to { transform: translate3d(-190px,-90px,0) scale(0.9); } }

@media (max-width: 1050px) {
    .dd-flip-carousel { display: block; min-height: 0; }
    .dd-carousel-mode-copy { max-width: 620px; margin: 0 auto; padding: 32px 28px 0; text-align: center; }
    .dd-carousel-mode-copy p { max-width: 560px; margin-left: auto; margin-right: auto; }
    .dd-carousel-stage { height: 545px; }
    .dd-carousel-slide { width: min(75vw,680px); height: min(51vw,450px); min-height: 370px; }
}
@media (max-width: 720px) {
    .dd-flip-showcase { padding: 88px 0 94px; }
    .dd-carousel-mode-switcher { display: flex; margin-right: -24px; padding-right: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .dd-carousel-mode-switcher::-webkit-scrollbar { display: none; }
    .dd-mode-button { min-width: 228px; scroll-snap-align: start; }
    .dd-flip-carousel { margin-left: -8px; margin-right: -8px; border-radius: 26px; }
    .dd-carousel-mode-copy { padding: 27px 22px 0; }
    .dd-carousel-stage { height: 465px; }
    .dd-carousel-slide { width: calc(100vw - 64px); height: 368px; min-height: 0; }
    .dd-carousel-slide.is-next { opacity: 0.22; transform: translate3d(7%,-50%,-520px) scale(0.34) rotateY(-30deg); }
    .dd-carousel-slide.is-prev { opacity: 0.14; transform: translate3d(-108%,-50%,-560px) scale(0.3) rotateY(28deg); }
    .dd-carousel-slide figcaption { padding: 21px 20px; }
    .dd-carousel-slide figcaption { align-items: flex-start; flex-direction: column-reverse; gap: 8px; }
    .dd-carousel-slide figcaption div { text-align: left; }
    .dd-carousel-toolbar { grid-template-columns: 1fr; justify-items: center; gap: 13px; padding: 18px 18px 22px; }
    .dd-carousel-actions { grid-row: 1; }
    .dd-carousel-dots { grid-row: 2; }
    .dd-carousel-hint { grid-row: 3; }
}
@media (max-width: 430px) {
    .dd-carousel-stage { height: 415px; }
    .dd-carousel-slide { width: calc(100vw - 52px); height: 325px; }
    .dd-mode-button { min-width: 214px; }
    .dd-carousel-slide figcaption strong { font-size: 23px; }
    .dd-carousel-slide figcaption small { font-size: 7px; }
    .dd-carousel-play { padding: 0 13px; }
}
@media (prefers-reduced-motion: reduce) {
    .dd-flip-aura, .dd-carousel-slide, .dd-carousel-slide.is-entering, .dd-carousel-slide.is-exiting, .dd-carousel-slide.is-entering-back, .dd-carousel-slide.is-exiting-back, .dd-carousel-slide.is-mode-pulsing { animation: none !important; }
    .dd-carousel-slide { transition: opacity 0.25s ease !important; transform: translate3d(-50%,-50%,0) scale(0.94) !important; }
    .dd-carousel-slide.is-active { opacity: 1; transform: translate3d(-50%,-50%,0) scale(1) !important; }
    .dd-carousel-slide.is-next, .dd-carousel-slide.is-prev { opacity: 0 !important; }
    .dd-carousel-play { display: none; }
}

/* ============================================================
   Dev Diwali motion system — depth, drift and river light
   ============================================================ */
.dd-scroll-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    pointer-events: none;
    background: rgba(8,8,23,0.08);
}
.dd-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #d46d21, #ffd36e, #ef8f2f);
    box-shadow: 0 0 18px rgba(246,196,93,0.7);
    will-change: transform;
}

/* Fix the dark-on-dark gallery title with the specificity it needs. */
.page-dev-diwali main .dd-section-heading-light h2,
.page-dev-diwali main .dd-gallery-section .dd-section-heading-light h2,
.page-home main :is(.dd-flip-showcase, .dd-night-section) .dd-section-heading-light h2 {
    color: #fff;
    background: linear-gradient(112deg, #ffffff 8%, #fff4d0 56%, #f4b751 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 18px 55px rgba(239,143,47,0.12);
}
.page-dev-diwali .dd-gallery-section .dd-section-heading-light > p {
    color: rgba(255,255,255,0.82);
}
.dd-gallery-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    width: 680px;
    height: 680px;
    top: -320px;
    right: -260px;
    border-radius: 50%;
    background: conic-gradient(from 30deg, rgba(239,143,47,0.18), rgba(79,54,137,0.08), rgba(246,196,93,0.15), rgba(239,143,47,0.18));
    filter: blur(70px);
    opacity: 0.65;
    animation: dd-orbit-glow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Richer scroll entrance: the stagger value is assigned in JavaScript. */
html.dd-motion-ready .page-dev-diwali .reveal {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 52px, 0) scale(0.985);
    transition:
        opacity 0.85s cubic-bezier(.2,.7,.2,1),
        transform 0.95s cubic-bezier(.16,1,.3,1),
        filter 0.75s ease;
    transition-delay: var(--dd-reveal-delay, 0ms);
}
html.dd-motion-ready .page-dev-diwali .reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Pointer-responsive 3D surfaces. */
.dd-tilt-surface {
    --dd-tilt-x: 0deg;
    --dd-tilt-y: 0deg;
    --dd-lift: 0px;
    --dd-shine-x: 50%;
    --dd-shine-y: 50%;
    position: relative;
    transform: perspective(1150px) rotateX(var(--dd-tilt-x)) rotateY(var(--dd-tilt-y)) translate3d(0, var(--dd-lift), 0);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.dd-tilt-surface.dd-tilting { transition: transform 80ms linear, box-shadow 0.25s ease; }
.dd-tilt-surface:hover { --dd-lift: -7px; }
.dd-tilt-surface::before {
    content: '';
    position: absolute;
    z-index: 5;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--dd-shine-x) var(--dd-shine-y), rgba(255,231,169,0.25), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.dd-tilt-surface.dd-tilting::before { opacity: 1; }
.dd-countdown-card.dd-tilt-surface > *,
.dd-package-card.dd-tilt-surface .dd-package-body,
.dd-moment-card.dd-tilt-surface .dd-moment-overlay {
    transform: translateZ(24px);
}
.dd-moment-card.dd-tilt-surface .dd-moment-overlay { z-index: 6; }
.dd-package-card.dd-tilt-surface:hover,
.dd-moment-card.dd-tilt-surface:hover { transform: perspective(1150px) rotateX(var(--dd-tilt-x)) rotateY(var(--dd-tilt-y)) translate3d(0, var(--dd-lift), 0); }
html.dd-motion-ready .page-dev-diwali .reveal.active.dd-tilt-surface {
    opacity: 1;
    filter: blur(0);
    transform: perspective(1150px) rotateX(var(--dd-tilt-x)) rotateY(var(--dd-tilt-y)) translate3d(0, var(--dd-lift), 0);
}
.dd-package-card.dd-tilt-surface:hover { box-shadow: 0 32px 80px rgba(64,37,22,0.19); }
.dd-package-featured.dd-tilt-surface:hover { box-shadow: 0 34px 90px rgba(3,5,18,0.42), 0 0 0 1px rgba(246,196,93,0.25); }

/* Scroll depth on photography and the hero layers. */
.dd-hero {
    --dd-hero-shift: 0px;
    background-position: center calc(38% + var(--dd-hero-shift));
}
.dd-hero-copy {
    transform: translate3d(0, var(--dd-copy-shift, 0px), 0);
    will-change: transform;
}
.dd-hero-glow {
    transform: translate3d(var(--dd-glow-x, 0px), var(--dd-glow-y, 0px), 0);
    transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}
.dd-collage-main {
    transform: translate3d(0, var(--dd-depth-y, 0px), 0) rotate(1.4deg);
    transition: transform 0.18s linear;
    will-change: transform;
}
.dd-collage-small {
    transform: translate3d(0, var(--dd-depth-y, 0px), 0) rotate(-2.2deg);
    transition: transform 0.18s linear;
    will-change: transform;
}
.dd-collage-note {
    transform: translate3d(0, var(--dd-depth-y, 0px), 0);
    animation: dd-note-float 4.8s ease-in-out infinite;
    will-change: transform;
}
.dd-moment-card img,
.dd-package-image img,
.dd-gallery-item img,
.dd-plan-image img {
    --dd-img-shift: 0px;
    --dd-pan-x: 0px;
    --dd-pan-y: 0px;
    transform: scale(1.075) translate3d(var(--dd-pan-x), calc(var(--dd-img-shift) + var(--dd-pan-y)), 0);
    will-change: transform;
}
.dd-moment-card:hover img,
.dd-package-card:hover .dd-package-image img,
.dd-gallery-item:hover img {
    transform: scale(1.12) translate3d(var(--dd-pan-x), calc(var(--dd-img-shift) + var(--dd-pan-y)), 0);
}

/* Kinetic divider: festival language moving like reflections on water. */
.dd-kinetic-band {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid rgba(246,196,93,0.22);
    border-bottom: 1px solid rgba(246,196,93,0.16);
    background: linear-gradient(90deg, #32121f, #10142e 48%, #32121f);
    color: #fff1cc;
    transform: rotate(-1deg) scale(1.015);
    box-shadow: 0 14px 50px rgba(10,8,22,0.18);
}
.dd-kinetic-band::before,
.dd-kinetic-band::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 12vw;
    pointer-events: none;
}
.dd-kinetic-band::before { left: 0; background: linear-gradient(90deg, #32121f, transparent); }
.dd-kinetic-band::after { right: 0; background: linear-gradient(-90deg, #32121f, transparent); }
.dd-kinetic-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 18px 0;
    animation: dd-marquee 24s linear infinite;
}
.dd-kinetic-set {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
}
.dd-kinetic-track span {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.1vw, 30px);
    font-style: italic;
    white-space: nowrap;
}
.dd-kinetic-track i { color: var(--dd-amber, var(--gold-light)); font-size: 10px; font-style: normal; }
.site-kinetic-band { transform: none; }

/* The image grid has its own subtle cursor movement. */
.dd-gallery-item { transform-style: preserve-3d; }
.dd-gallery-item::before {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    border: 1px solid rgba(255,255,255,0);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.dd-gallery-item:hover::before {
    border-color: rgba(255,211,110,0.42);
    box-shadow: inset 0 0 50px rgba(239,143,47,0.08);
}

@keyframes dd-marquee { to { transform: translateX(-50%); } }
@keyframes dd-orbit-glow { to { transform: translate3d(-180px, 160px, 0) rotate(35deg) scale(1.16); } }
@keyframes dd-note-float { 0%, 100% { margin-bottom: 0; } 50% { margin-bottom: 9px; } }

@media (max-width: 900px) {
    .dd-hero { background-position: 61% center; }
    .dd-tilt-surface { transform: none; }
    .dd-tilt-surface:hover { --dd-lift: 0px; }
    .dd-collage-main { transform: translate3d(0, var(--dd-depth-y, 0px), 0) rotate(0.8deg); }
    .dd-collage-small { transform: translate3d(0, var(--dd-depth-y, 0px), 0) rotate(-1.2deg); }
    .dd-kinetic-track { animation-duration: 19s; }
}

@media (max-width: 640px) {
    .dd-kinetic-track { padding: 13px 0; }
    .dd-kinetic-set { gap: 24px; padding-right: 24px; }
    .dd-kinetic-track span { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .dd-scroll-progress { display: none; }
    .dd-gallery-section::after,
    .dd-kinetic-track,
    .dd-collage-note { animation: none !important; }
    html.dd-motion-ready .page-dev-diwali .reveal,
    html.dd-motion-ready .page-dev-diwali .reveal.active {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
    .dd-tilt-surface,
    .dd-tilt-surface:hover,
    .dd-collage-main,
    .dd-collage-small,
    .dd-collage-note,
    .dd-hero-copy,
    .dd-hero-glow,
    .dd-moment-card img,
    .dd-package-image img,
    .dd-gallery-item img,
    .dd-plan-image img {
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Dev Diwali Event section (homepage) ---------- */
.dev-diwali-section { position: relative; overflow: hidden; }
.dev-diwali-section::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 82% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.06) 0%, transparent 35%);
}
.dev-diwali-section > .container { position: relative; z-index: 1; }
.dev-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 768px) {
    .card-grid.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .dev-diwali-section .section-title { font-size: clamp(24px, 6vw, 32px); }
}

/* Security: visually-hidden honeypot field for bot spam protection. */
.dk-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* Floating WhatsApp contact action */
.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 17px;
    border: 2px solid rgba(255,255,255,0.95);
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(8,16,40,0.24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-fab:hover {
    background: #1fbd5b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(8,16,40,0.3);
}
.whatsapp-fab:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.whatsapp-fab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}
@media (max-width: 640px) {
    .whatsapp-fab {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 11px 14px;
        font-size: 11px;
    }
}
/* Tour/hotel/boat detail pages add a fixed price+Book bar at the bottom on
   mobile/tablet (see .book-cta-sticky) — without this, the WhatsApp FAB's
   own fixed bottom position sits inside that bar instead of above it. */
@media (max-width: 1180px) {
    body:has(.book-cta-sticky) .whatsapp-fab { bottom: 90px; }
}
