/* ============================================================
   CLUSTER TRAVELS — style.css  (2026 Premium Edition)
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Brand */
  --orange:    #FF6B2B;
  --orange-d:  #E85A1B;
  --orange-l:  #FF9A5C;
  --accent:    #7C3AED;
  --accent-2:  #4F46E5;
  --gold:      #FFB347;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #FF6B2B 0%, #FFB347 100%);
  --grad-cool:   linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --grad-aurora: linear-gradient(135deg, #050D1F 0%, #0D0D30 35%, #1A0730 70%, #0A1525 100%);
  --grad-hero:   linear-gradient(135deg, rgba(5,10,30,.82) 0%, rgba(13,7,30,.5) 60%, rgba(5,10,30,.75) 100%);
  --grad-card:   linear-gradient(135deg, rgba(255,107,43,.08) 0%, rgba(124,58,237,.06) 100%);

  /* Backgrounds */
  --dark:    #050D1F;
  --dark2:   #0A1525;
  --dark3:   #0F1E38;
  --mid:     #1A2E4A;
  --text:    #0F172A;
  --muted:   #64748B;
  --light:   #F8FAFF;
  --white:   #FFFFFF;

  /* Glow */
  --glow-orange: 0 0 40px rgba(255,107,43,.35);
  --glow-accent: 0 0 40px rgba(124,58,237,.3);
  --glow-card:   0 20px 60px rgba(255,107,43,.12);

  /* Shadows */
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.22);

  /* Shape */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Motion */
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:  cubic-bezier(0,0,.2,1);

  /* Type */
  --font:  'Poppins', sans-serif;
  --font2: 'Inter', sans-serif;

  /* ── trips.css / inner-page compatibility aliases ── */
  --primary:      #FF6B2B;
  --primary-dark: #E85A1B;
  --secondary:    #0F172A;
  --text-muted:   #64748B;
  --bg-light:     #F8FAFF;
  --bg-soft:      #F1F5FF;
  --bg-card:      #FFFFFF;
  --bg-dark:      #050D1F;
  --border:       #E5E7EB;
  --font-head:    'Poppins', sans-serif;
  --nav-height:   64px;
  --radius-lg:    18px;
  --radius-xl:    22px;
  --radius-full:  999px;
  --shadow-sm:    0 4px 24px rgba(0,0,0,.08);
  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --gradient:     linear-gradient(135deg, #FF6B2B 0%, #FFB347 100%);
  --shadow-glow:  0 8px 32px rgba(255,107,43,.35);
  --bg:           #FFFFFF;
}

/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior:smooth;
  font-size:16px;
  /* anchor-link scroll stops below the fixed navbar */
  scroll-padding-top: var(--nav-height);
}
body {
  font-family:var(--font);
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  /* push ALL content below the fixed navbar so nothing hides behind it on scroll */
  padding-top: var(--nav-height);
}
img  { display:block; max-width:100%; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,select { font-family:inherit; }

/* Better default overflow protection on dense marketing blocks */
h1, h2, h3, h4, h5, h6, p, span, a, button {
  overflow-wrap: anywhere;
}

/* ── Scroll Progress Bar ─────────────────────────────────── */
#scroll-progress {
  position:fixed; top:0; left:0; height:3px; z-index:9999;
  background:var(--grad-brand);
  width:0%; border-radius:0 3px 3px 0;
  transition:width .1s linear;
  box-shadow:0 0 10px rgba(255,107,43,.6);
}

/* ── Container ───────────────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 28px; }

/* ── Section base ────────────────────────────────────────── */
/* Every page section gets its own stacking context so animated children
   (transforms, will-change, keyframes) can never escape above the fixed navbar */
.section { padding:100px 0; isolation:isolate; }
.section-header { text-align:center; margin-bottom:60px; }
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: 800; line-height: 1.12;
  margin: 14px 0 18px;
  letter-spacing: -.03em;
}
.section-header p { 
  font-size: clamp(0.95rem, 2vw, 1.05rem); 
  color: var(--muted); 
  max-width: 520px; 
  margin: 0 auto; 
  line-height: 1.7; 
}

.section-tag {
  display:inline-flex; align-items:center; gap:7px;
  font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  background:linear-gradient(135deg,rgba(255,107,43,.12),rgba(124,58,237,.08));
  color:var(--orange);
  border:1px solid rgba(255,107,43,.25);
  padding:5px 16px; border-radius:999px;
}
.section-tag::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--grad-brand);
  box-shadow:0 0 6px rgba(255,107,43,.6);
}
.section-tag.light {
  background:rgba(255,107,43,.15); color:#FFB38A;
  border-color:rgba(255,107,43,.3);
}

/* ── Gradient text ───────────────────────────────────────── */
.text-gradient {
  background:var(--grad-brand);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.text-gradient-cool {
  background:linear-gradient(135deg,#7C3AED,#FF6B2B);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── Reveal animation classes (added by JS) ──────────────── */
.reveal {
  opacity:0; transform:translateY(36px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.reveal-left  { transform:translateX(-40px); }
.reveal.reveal-right { transform:translateX(40px); }
.reveal.reveal-scale { transform:scale(.94); }
.reveal.visible {
  opacity:1 !important;
  transform:translate(0,0) scale(1) !important;
}

/* ── Global button styles ────────────────────────────────── */
.btn-book {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--grad-brand); color:#fff;
  padding:12px 26px; border-radius:999px;
  font-size:.9rem; font-weight:700;
  box-shadow:0 4px 22px rgba(255,107,43,.5);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
  position:relative; overflow:hidden;
}
.btn-book::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.2),transparent);
  opacity:0; transition:opacity .3s;
}
.btn-book:hover { transform:translateY(-2px) scale(1.03); box-shadow:0 8px 28px rgba(255,107,43,.55); }
.btn-book:hover::after { opacity:1; }

.btn-orange {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--grad-brand); color:#fff;
  padding:13px 30px; border-radius:999px;
  font-size:.9rem; font-weight:700;
  box-shadow:var(--glow-orange);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
  position:relative; overflow:hidden;
}
.btn-orange::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.12);
  opacity:0; transition:opacity .3s;
}
.btn-orange:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(255,107,43,.5); }
.btn-orange:hover::after { opacity:1; }

.btn-ghost {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 34px; border-radius:999px;
  border:2px solid var(--orange); color:var(--orange);
  font-size:.9rem; font-weight:700;
  transition:all .3s var(--ease-spring);
  position:relative; overflow:hidden; z-index:0;
}
.btn-ghost::before {
  content:''; position:absolute; inset:0;
  background:var(--grad-brand); z-index:-1;
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
  border-radius:999px;
}
.btn-ghost:hover { color:#fff; border-color:transparent; box-shadow:var(--glow-orange); }
.btn-ghost:hover::before { transform:scaleX(1); }

.center-action { text-align:center; margin-top:52px; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */
/* ============================================================
   NAVBAR — Premium 2026
   ============================================================ */

/* State tokens */
.navbar {
  --nv-text:   #1e2d3d;
  --nv-text-h: #0a1828;
  --nv-bar-bg: #ffffff;
}
.navbar.scrolled {
  --nv-text:   #1e2d3d;
  --nv-text-h: #0a1828;
  --nv-bar-bg: #ffffff;
}
.home-page .navbar:not(.scrolled) {
  --nv-text:   rgba(255,255,255,.92);
  --nv-text-h: #ffffff;
  --nv-bar-bg: transparent;
}

.navbar {
  position:fixed; top:0; left:0; right:0; z-index:9000;
  height:64px;
  background:var(--nv-bar-bg);
  transition:background .35s ease, box-shadow .35s ease;
  overflow:visible;
  /* Force own GPU compositing layer so it always paints above page content */
  transform:translateZ(0);
  will-change:transform;
}
.navbar.scrolled {
  box-shadow:0 2px 20px rgba(0,0,0,.10);
}
.home-page .navbar:not(.scrolled) {
  box-shadow:none;
}
/* Orange top accent bar */
.navbar::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--orange),#FFB347,var(--orange));
  z-index:1;
}

/* Wrapper */
.nav-inner, .nav-container {
  max-width:1440px; margin:0 auto; padding:0 32px;
  display:flex; align-items:center;
  height:100%; gap:0;
}

/* Logo */
.nav-logo {
  display:flex; align-items:center; flex-shrink:0;
  margin-right:28px; text-decoration:none;
}
.logo-img {
  height:38px; width:auto; object-fit:contain;
  transition:filter .35s ease;
}
.navbar.scrolled .logo-img { filter:none; }
.logo-fallback {
  display:none; align-items:center; gap:9px;
  font-size:1.15rem; font-weight:800; letter-spacing:-.5px;
  color:var(--nv-text); transition:color .35s;
}
.logo-icon { color:var(--orange); font-size:1.35rem; }
.logo-text { color:var(--nv-text); transition:color .35s; }
.logo-accent {
  background:var(--grad-brand);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* Nav links list */
.nav-links {
  display:flex; align-items:center; justify-content:center;
  list-style:none; margin:0; padding:0;
  height:100%; flex:1;
}
.nav-links > li {
  position:relative; height:100%;
  display:flex; align-items:center;
}

/* Nav link anchor */
.nvl {
  display:flex; align-items:center; gap:5px;
  padding:0 11px; height:100%;
  font-size:.86rem; font-weight:600;
  color:var(--nv-text); letter-spacing:.01em;
  white-space:nowrap; text-decoration:none;
  transition:color .25s ease;
}
.nvl:hover { color:var(--nv-text-h); }
.navbar.scrolled .nvl:hover { color:var(--orange); }
.nvl.active { color:var(--orange) !important; }

/* Bottom active bar */
.nav-links > li > .nvl.active::after {
  content:''; position:absolute; bottom:0; left:12px; right:12px; height:2px;
  background:var(--orange); border-radius:2px 2px 0 0;
}

/* Chevron */
.nv-arr { font-size:.58rem; opacity:.65; transition:transform .25s ease; }
.nv-mega:hover .nv-arr,
.nv-drop:hover .nv-arr { transform:rotate(180deg); }

/* ── MEGA PANEL ─────────────────────────────────────── */
.mega-panel {
  position:fixed;
  top:64px;                          /* flush with navbar bottom */
  left:50%;
  transform:translateX(-50%) translateY(-8px);
  width:min(1180px, calc(100vw - 24px));
  background:#ffffff;
  border-top:3px solid var(--orange);
  border-radius:0 0 14px 14px;
  box-shadow:0 20px 56px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.06);
  padding:8px 0 10px;                /* tight top/bottom — no extra room */
  overflow:hidden;                   /* no scrollbar; content stays compact */
  opacity:0; visibility:hidden;
  transition:opacity .24s ease, transform .24s ease, visibility .24s;
  z-index:8999;   /* just below navbar (9000) so it sits right under it */
}
.mega-panel-dmc {
  width:min(780px, calc(100vw - 24px));
  padding:6px 0 8px;
}
.mega-panel-mice {
  width:min(760px, calc(100vw - 24px));
  padding:6px 0 8px;
}
.nv-mega:hover .mega-panel {
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}

/* ── INNER FLEX LAYOUT — all columns stretch to the same height */
.mega-grid {
  width:100%; padding:0 20px;
  display:flex;
  align-items:stretch;              /* equal-height columns — no raw white patches */
  gap:0;
}
.mega-panel-dmc .mega-grid {
  padding:0 14px;
}
.mega-panel-mice .mega-grid {
  padding:0 14px;
}

/* regular columns — equal width, content anchored to top */
.mega-col {
  flex:1 1 0; min-width:0;
  padding:8px 14px;
  border-right:1px solid #eef1f6;
  display:flex; flex-direction:column; justify-content:flex-start;
}
.mega-panel-dmc .mega-col {
  padding:7px 12px;
}
.mega-panel-mice .mega-col {
  padding:7px 12px;
}
.mega-col:last-child { border-right:none; }

/* CTA column — fixed width; card is vertically centred; warm bg fills the column */
.mega-col-cta {
  flex:0 0 196px;
  padding:8px 8px 8px 14px;
  border:none;
  background:linear-gradient(160deg, #fffaf7 0%, #fff4ee 100%);
  border-radius:0 0 14px 0;        /* match panel bottom-right radius */
  display:flex; flex-direction:column; justify-content:center;
  align-items:stretch;
}
.mega-panel-dmc .mega-col-cta {
  flex-basis:180px;
  padding:7px 8px 7px 12px;
}
.mega-panel-mice .mega-col-cta {
  flex-basis:180px;
  padding:7px 8px 7px 12px;
}
.mega-panel-mice .mega-cta-card {
  padding:10px 12px;
}
.mega-panel-mice .mega-cta-card p {
  margin-bottom:6px;
}

.mega-col-head {
  display:flex; align-items:center; gap:6px;
  font-size:.63rem; font-weight:800;
  letter-spacing:.09em; text-transform:uppercase;
  color:#8a9ab0;
  margin-bottom:6px; padding-bottom:5px;
  border-bottom:1px solid #eef1f6;
}
.mc-flag { font-size:.9rem; flex-shrink:0; }
.nv-icon-sm { color:var(--orange); font-size:.76rem; flex-shrink:0; }

.mega-col ul { list-style:none; margin:0; padding:0; }
.mega-col-india ul {
  columns:2;
  column-gap:10px;
}
.mega-col-india li {
  break-inside:avoid;
}
.mega-col ul li a {
  display:block;
  padding:3px 8px;
  font-size:.82rem; font-weight:500; color:#2c3e52;
  border-radius:5px; text-decoration:none;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  transition:background .16s, color .16s, padding-left .16s;
}
.mega-col ul li a:hover {
  background:#fff7f3; color:var(--orange); padding-left:13px;
}

/* CTA card — flex-shrink:0 so it never squishes */
.mega-cta-card {
  background:linear-gradient(135deg,#fff8f5,#fff0e6);
  border-radius:10px; padding:12px 13px;
  text-align:center; width:100%;
  border:1px solid rgba(255,107,43,.15);
  flex-shrink:0;
}
.mega-cta-card > i {
  font-size:1.1rem; color:var(--orange);
  margin-bottom:4px; display:block;
}
.mega-cta-card h4 {
  font-size:.8rem; font-weight:700;
  color:#0d1f2d; margin:0 0 3px;
}
.mega-cta-card p {
  font-size:.68rem; color:#6b7c93;
  line-height:1.35; margin:0 0 7px;
}
.mega-cta-btn {
  display:inline-flex; align-items:center; gap:5px;
  padding:4px 11px;
  background:var(--orange); color:#fff;
  border-radius:50px; font-size:.72rem; font-weight:700;
  text-decoration:none;
  transition:filter .2s, transform .2s;
}
.mega-cta-btn:hover { filter:brightness(1.08); transform:translateY(-1px); }

/* ── hide mega-panels on narrow / tablet viewports ────── */
/* mobile drawer already handles ≤768 px;
   between 769-1279 px the desktop rail is visible but
   columns are too narrow for a 5-col panel – hide them  */
@media (max-width:1279px) {
  .mega-panel { display:none !important; }
  .nv-mega .nv-arr { display:none; }
}

/* ── SIMPLE DROPDOWN ────────────────────────────────── */
.drop-panel {
  position:absolute; top:calc(100% + 6px);
  left:50%; transform:translateX(-50%) translateY(6px);
  min-width:210px;
  background:#ffffff;
  border-radius:12px;
  border:1px solid #eef1f6;
  border-top:2px solid var(--orange);
  box-shadow:0 16px 48px rgba(0,0,0,.11), 0 3px 8px rgba(0,0,0,.05);
  padding:8px;
  opacity:0; visibility:hidden;
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
  z-index:8999;
}
.nv-drop:hover .drop-panel {
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.drop-panel a {
  display:block; padding:9px 14px;
  font-size:.86rem; font-weight:500;
  color:#2c3e52; border-radius:8px;
  text-decoration:none; white-space:nowrap;
  transition:background .18s, color .18s;
}
.drop-panel a:hover { background:#fff7f3; color:var(--orange); }

/* ── RIGHT CTA ──────────────────────────────────────── */
.nav-cta, .nav-actions {
  display:flex; align-items:center; gap:16px;
  flex-shrink:0; margin-left:auto; padding-left:16px;
}
.nav-phone {
  display:flex; align-items:center; gap:6px;
  font-size:.83rem; font-weight:600;
  color:var(--nv-text); text-decoration:none;
  transition:color .25s;
}
.nav-phone i { color:var(--orange); }
.nav-phone:hover { color:var(--orange); }

/* Plan Your Trip button */
.btn-plan {
  display:inline-flex; align-items:center; gap:7px;
  padding:8px 18px;
  background:var(--orange); color:#ffffff;
  border-radius:50px;
  font-size:.84rem; font-weight:700; letter-spacing:.01em;
  text-decoration:none; white-space:nowrap;
  box-shadow:0 4px 18px rgba(255,107,43,.38);
  transition:filter .25s, transform .25s, box-shadow .25s;
}
.btn-plan:hover {
  filter:brightness(1.08); transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(255,107,43,.48);
}
.btn-plan i { font-size:.72rem; }

/* ── HAMBURGER ──────────────────────────────────────── */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:8px; margin-left:14px;
  background:none; border:none; cursor:pointer; flex-shrink:0;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--nv-text); border-radius:2px;
  transition:transform .3s ease, opacity .3s ease, background .35s ease;
}

/* ── MOBILE OVERLAY ─────────────────────────────────── */
.mob-overlay {
  position:fixed; inset:0;
  background:rgba(5,13,31,.55);
  backdrop-filter:blur(4px);
  z-index:9100;
  opacity:0; visibility:hidden;
  transition:opacity .35s, visibility .35s;
}
.mob-overlay.open { opacity:1; visibility:visible; }

/* ── MOBILE DRAWER ──────────────────────────────────── */
.mob-drawer {
  position:fixed; top:0; right:0; bottom:0;
  width:min(380px,92vw);
  background:#ffffff;
  z-index:9200;
  display:flex; flex-direction:column;
  transform:translateX(100%);
  transition:transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.mob-drawer.open { transform:translateX(0); }

.mob-head {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid #eef1f6; flex-shrink:0;
}
.mob-logo {
  display:flex; align-items:center;
  width:132px; height:50px;
  text-decoration:none;
}
.mob-logo img {
  width:100%; height:100%; object-fit:contain;
}
.mob-close {
  background:none; border:none; cursor:pointer;
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; color:#4a6580; font-size:1.1rem;
  transition:background .2s;
}
.mob-close:hover { background:#f5f7fa; color:#0d1f2d; }

.mob-nav { flex:1; padding:10px 0; overflow-y:auto; }

.mob-link {
  display:block; padding:13px 24px;
  font-size:.95rem; font-weight:600; color:#1e2d3d;
  text-decoration:none;
  transition:color .2s, background .2s;
  border-bottom:1px solid #f5f7fa;
}
.mob-link:hover { color:var(--orange); background:#fff7f3; }

.mob-sect { border-bottom:1px solid #f0f3f7; }
.mob-sect summary {
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 24px;
  font-size:.95rem; font-weight:600; color:#1e2d3d;
  cursor:pointer; list-style:none; user-select:none;
}
.mob-sect summary::-webkit-details-marker { display:none; }
.mob-sect summary i { font-size:.65rem; opacity:.6; transition:transform .22s; }
.mob-sect[open] summary i { transform:rotate(180deg); }
.mob-sect[open] summary { color:var(--orange); }

.mob-sub { padding:4px 0 10px; background:#fafbfc; }
.mob-sub-head {
  padding:8px 30px 4px;
  font-size:.67rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
  color:#8a9ab0; margin-top:6px;
}
.mob-sub a {
  display:block; padding:8px 30px;
  font-size:.88rem; font-weight:500; color:#3a5068;
  text-decoration:none;
  transition:color .15s, padding-left .15s;
}
.mob-sub a:hover { color:var(--orange); padding-left:36px; }

.mob-footer {
  padding:18px 22px; border-top:1px solid #eef1f6;
  display:flex; flex-direction:column; gap:10px; flex-shrink:0;
}
.mob-plan-btn {
  display:block; text-align:center; padding:14px;
  background:var(--orange); color:#fff;
  border-radius:10px; font-size:.94rem; font-weight:700;
  text-decoration:none; transition:filter .2s;
}
.mob-plan-btn:hover { filter:brightness(1.08); }
.mob-wa-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:13px; background:#25D366; color:#fff;
  border-radius:10px; font-size:.9rem; font-weight:700;
  text-decoration:none; transition:filter .2s;
}
.mob-wa-btn:hover { filter:brightness(1.05); }
.mob-wa-btn i { font-size:1.1rem; }
.mob-phone-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:11px; border:1.5px solid #dee4ec; color:#3a5068;
  border-radius:10px; font-size:.88rem; font-weight:600;
  text-decoration:none; transition:border-color .2s, color .2s;
}
.mob-phone-btn:hover { border-color:var(--orange); color:var(--orange); }
.mob-phone-btn i { color:var(--orange); }

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:9050;
  display:flex; align-items:center; justify-content:center;
  width:56px; height:56px;
  background:#25D366; color:#fff;
  border-radius:50%; font-size:1.65rem;
  text-decoration:none;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
}
.wa-float:hover {
  transform:scale(1.1);
  box-shadow:0 10px 32px rgba(37,211,102,.55);
}
.wa-float::before {
  content:''; position:absolute; inset:-6px;
  border:2px solid rgba(37,211,102,.45); border-radius:50%;
  animation:waPulse 2s ease-out infinite;
}
.wa-float::after {
  content:'Chat with us!'; position:absolute;
  right:calc(100% + 10px); top:50%; transform:translateY(-50%) translateX(6px);
  background:#0d1f2d; color:#fff;
  font-size:.76rem; font-weight:600;
  padding:6px 12px; border-radius:6px;
  white-space:nowrap; pointer-events:none;
  opacity:0; transition:opacity .25s, transform .25s;
}
.wa-float:hover::after { opacity:1; transform:translateY(-50%) translateX(0); }
@keyframes waPulse {
  0%   { transform:scale(1); opacity:.8; }
  100% { transform:scale(1.6); opacity:0; }
}

/* ── BACK TO TOP ────────────────────────────────────── */
.back-to-top {
  position:fixed; bottom:94px; right:28px; z-index:9050;
  width:46px; height:46px; border-radius:50%;
  background:var(--grad-brand); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; border:none; cursor:pointer;
  opacity:0; pointer-events:none;
  box-shadow:0 4px 18px rgba(255,107,43,.45);
  transition:opacity .35s, transform .35s var(--ease-spring);
  transform:translateY(12px) scale(.9);
}
.back-to-top.visible { opacity:1; pointer-events:auto; transform:translateY(0) scale(1); }
.back-to-top:hover   { box-shadow:0 8px 28px rgba(255,107,43,.55); transform:translateY(-2px) scale(1.05); }

/* ── PLAN YOUR TRIP MODAL (site-wide, injected with the footer) ── */
.plan-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.plan-modal-overlay.open { opacity: 1; pointer-events: all; }
.plan-modal {
  background: #fff; border-radius: 20px;
  padding: 36px; width: 100%; max-width: 520px;
  position: relative;
  transform: scale(.94);
  transition: transform .25s;
  max-height: 90vh; overflow-y: auto;
}
.plan-modal-overlay.open .plan-modal { transform: scale(1); }
.plan-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: #f3f4f6; border: none; border-radius: 50%;
  cursor: pointer; font-size: .9rem; color: #555;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.plan-modal-close:hover { background: #e5e7eb; }
.plan-modal-title {
  font-size: 1.3rem; font-weight: 800;
  color: var(--text, #111); margin-bottom: 6px;
}
.plan-modal-sub {
  font-size: .83rem; color: var(--muted, #777);
  margin-bottom: 22px;
}
.plan-modal-form { display: flex; flex-direction: column; gap: 12px; }
.plan-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-modal-form input,
.plan-modal-form select,
.plan-modal-form textarea {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: .85rem; font-family: inherit;
  background: #fafafa; color: var(--text, #111);
  transition: border-color .2s;
}
.plan-modal-form input:focus,
.plan-modal-form select:focus,
.plan-modal-form textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.plan-modal-form button[type="submit"] {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-brand, linear-gradient(135deg,#FF6B2B,#FF9A5C));
  color: #fff; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 700;
  padding: 13px 0; border-radius: 999px;
  transition: opacity .2s, background .2s;
}
.plan-modal-form button[type="submit"]:hover { opacity: .88; }
@media (max-width: 480px) {
  .plan-modal { padding: 26px; }
  .plan-modal-row { grid-template-columns: 1fr; }
}

/* ── BUTTON SYSTEM (shared) ─────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 20px; border-radius:999px;
  font-size:.84rem; font-weight:700; font-family:var(--font);
  cursor:pointer; border:none;
  transition:all .3s var(--ease-spring); white-space:nowrap;
}
.btn-primary {
  background:var(--grad-brand); color:#fff;
  box-shadow:0 4px 16px rgba(255,107,43,.4);
}
.btn-primary:hover {
  filter:brightness(1.08); transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,107,43,.5);
}
.btn-outline {
  background:transparent; color:rgba(255,255,255,.82);
  border:1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.5); color:#fff;
}

/* Inner-page dropdown alias (about / trips / contact pages) */
.dropdown { position:relative; }
.dropdown-menu {
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%) translateY(10px);
  background:rgba(10,18,40,.97); backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.08); border-radius:var(--radius);
  padding:8px; min-width:200px;
  display:flex; flex-direction:column; gap:3px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow:0 32px 80px rgba(0,0,0,.5); z-index:100;
}
.dropdown:hover .dropdown-menu {
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:10px;
  font-size:.83rem; font-weight:500; color:rgba(255,255,255,.75);
  transition:background .2s, color .2s;
}
.dropdown-menu a i { color:var(--orange); font-size:.95rem; width:16px; }
.dropdown-menu a:hover { background:rgba(255,107,43,.12); color:#fff; }
@media (max-width:768px) {
  .nav-container { height:auto; min-height:74px; }
  .nav-actions { display:none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position:relative; height:100svh; min-height:680px;
  display:flex; flex-direction:column;
  overflow:hidden;
  isolation:isolate;
  /* negate body padding so the full-screen hero still starts at the very top */
  margin-top: calc(-1 * var(--nav-height));
}

/* Slides */
.hero-slides { position:absolute; inset:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.4s var(--ease);
  will-change:transform;
}
.hero-slide.active { opacity:1; }

/* Single clean overlay — light in the centre, darker at top & bottom */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg,
      rgba(5,13,31,.64)  0%,
      rgba(5,13,31,.34) 35%,
      rgba(5,13,31,.38) 65%,
      rgba(5,13,31,.88) 100%),
    linear-gradient(105deg,
      rgba(5,13,31,.66) 0%,
      transparent       56%),
    linear-gradient(250deg,
      rgba(255,107,43,.18) 0%,
      transparent 44%);
}

/* Ambient orbs — no blend mode so they're always visible */
.orb {
  position:absolute; border-radius:50%; z-index:2;
  pointer-events:none; filter:blur(72px);
}
.orb-1 {
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(255,107,43,.3) 0%, transparent 70%);
  top:-150px; right:-100px;
  animation:orbDrift1 12s ease-in-out infinite;
}
.orb-2 {
  width:400px; height:400px;
  background:radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  bottom:80px; left:-100px;
  animation:orbDrift2 15s ease-in-out infinite;
}
.orb-3 {
  width:300px; height:300px;
  background:radial-gradient(circle, rgba(255,179,71,.2) 0%, transparent 70%);
  top:40%; right:20%;
  animation:orbDrift3 10s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%,100% { transform:translate(0,0) scale(1); }
  33%     { transform:translate(-40px,30px) scale(1.08); }
  66%     { transform:translate(30px,-20px) scale(.95); }
}
@keyframes orbDrift2 {
  0%,100% { transform:translate(0,0) scale(1); }
  50%     { transform:translate(60px,-40px) scale(1.1); }
}
@keyframes orbDrift3 {
  0%,100% { transform:translate(0,0) scale(1); }
  40%     { transform:translate(-30px,20px) scale(1.05); }
  80%     { transform:translate(20px,30px) scale(.95); }
}

/* Particles canvas */
#hero-particles {
  position:absolute; inset:0; z-index:2;
  pointer-events:none;
}

/* Hero content */
.hero-content {
  position:relative; z-index:3;
  flex:1; display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center;
  max-width:980px; width:100%;
  margin:68px auto 0;
  padding:0 clamp(24px,5vw,60px);
}

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.78rem; font-weight:700; letter-spacing:.12em;
  color:rgba(255,255,255,.75); text-transform:uppercase;
  margin-bottom:22px;
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.12);
  padding:7px 18px; border-radius:999px;
  width:fit-content; align-self:center;
  animation:fadeSlideUp .8s var(--ease) .2s both;
}
.hero-eyebrow .dot {
  width:8px; height:8px; background:var(--orange);
  border-radius:50%; flex-shrink:0;
  box-shadow:0 0 12px rgba(255,107,43,.8);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.6} }

.hero-heading {
  font-size:clamp(3.4rem,7.6vw,6rem);
  font-weight:900; line-height:1.06;
  color:#fff; margin-bottom:24px;
  letter-spacing:0;
  text-shadow:0 24px 64px rgba(0,0,0,.3);
  animation:fadeSlideUp .8s var(--ease) .35s both;
}

.hero-sub {
  font-size: clamp(1rem, 2.4vw, 1.18rem); 
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px; line-height: 1.75;
  margin-bottom: 30px; text-align: center;
  animation: fadeSlideUp .8s var(--ease) .5s both;
}

@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Hero actions */
.hero-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:24px;
  animation:fadeSlideUp .8s var(--ease) .65s both;
}
.hero-btn {
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 24px;
  border-radius:999px;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  transition:transform .25s var(--ease), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.hero-btn-primary {
  background:var(--grad-brand);
  box-shadow:0 18px 45px rgba(255,107,43,.32);
}
.hero-btn-ghost {
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(10px);
}
.hero-btn:hover {
  transform:translateY(-3px);
}
.hero-btn-primary:hover {
  box-shadow:0 22px 54px rgba(255,107,43,.42);
}
.hero-btn-ghost:hover {
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.38);
}

/* Search box */
.hero-search {
  display:flex; align-items:stretch;
  background:rgba(255,255,255,.97);
  border-radius:var(--radius); overflow:hidden;
  box-shadow:0 28px 72px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
  max-width:720px; margin-bottom:22px;
  animation:fadeSlideUp .8s var(--ease) .65s both;
}
.search-group {
  flex:1; display:flex; flex-direction:column;
  padding:15px 22px; gap:4px; min-width:0;
}
.search-group label {
  font-size:.7rem; font-weight:700; letter-spacing:.07em;
  color:var(--muted); text-transform:uppercase;
  display:flex; align-items:center; gap:5px;
}
.search-group label i { color:var(--orange); }
.search-group input,
.search-group select {
  border:none; outline:none; background:transparent;
  font-size:.93rem; font-weight:600; color:var(--text);
  padding:0; height:26px;
}
.search-group select { cursor:pointer; -webkit-appearance:none; }
.search-sep { width:1px; background:rgba(0,0,0,.09); margin:12px 0; flex-shrink:0; }

.search-btn {
  background:var(--grad-brand); color:#fff;
  padding:0 30px; font-size:.9rem; font-weight:700;
  display:flex; align-items:center; gap:8px;
  transition:filter .3s, transform .2s;
  white-space:nowrap; flex-shrink:0;
  position:relative; overflow:hidden;
}
.search-btn::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.12); opacity:0; transition:opacity .3s;
}
.search-btn:hover { filter:brightness(1.1); }
.search-btn:hover::after { opacity:1; }

/* Pills */
.hero-pills {
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:9px;
  animation:fadeSlideUp .8s var(--ease) .78s both;
}
.pill-label { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.55); }
.pill {
  font-size:.78rem; font-weight:500; color:rgba(255,255,255,.88);
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  padding:6px 16px; border-radius:999px;
  transition:all .3s var(--ease-spring);
  backdrop-filter:blur(8px);
}
.pill:hover {
  background:var(--grad-brand); border-color:transparent;
  color:#fff; transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(255,107,43,.4);
}

/* Slide dots */
.slide-dots {
  position:absolute; bottom:135px; left:clamp(28px,5vw,88px);
  z-index:4; display:flex; gap:8px;
}
.slide-dot {
  width:8px; height:8px; border-radius:999px;
  background:rgba(255,255,255,.35); border:none; cursor:pointer;
  transition:width .35s var(--ease), background .35s;
}
.slide-dot.active { width:30px; background:var(--orange); box-shadow:0 0 12px rgba(255,107,43,.6); }

/* Stats bar */
.hero-stats-bar {
  position:relative; z-index:3;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.55); backdrop-filter:blur(20px);
  border-top:1px solid rgba(255,255,255,.07);
  padding:20px 40px; gap:0; flex-shrink:0;
}
.hstat { display:flex; flex-direction:column; align-items:center; gap:3px; padding:0 36px; }
.hstat strong {
  font-size:1.4rem; font-weight:800; color:#fff;
  background:var(--grad-brand);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hstat span   { font-size:.7rem; font-weight:600; color:rgba(255,255,255,.5); letter-spacing:.06em; text-transform:uppercase; }
.hstat-sep    { width:1px; height:38px; background:rgba(255,255,255,.1); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background:linear-gradient(135deg,#050D1F,#0D0D30);
  padding:16px 0; overflow:hidden;
  isolation:isolate;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
  position:relative;
}
.marquee-section::before,
.marquee-section::after {
  content:''; position:absolute; top:0; bottom:0; width:120px; z-index:1;
  pointer-events:none;
}
.marquee-section::before { left:0; background:linear-gradient(90deg,#050D1F,transparent); }
.marquee-section::after  { right:0; background:linear-gradient(-90deg,#050D1F,transparent); }

.marquee-track {
  display:flex; align-items:center; white-space:nowrap;
  animation:marquee 30s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state:paused; }
.marquee-track span {
  font-size:.82rem; font-weight:700;
  color:rgba(255,255,255,.5);
  padding:0 20px; letter-spacing:.08em; text-transform:uppercase;
  transition:color .3s;
}
.marquee-track span:hover { color:var(--orange); }
.marquee-track .sep { color:var(--orange); font-size:.55rem; padding:0 4px; opacity:.6; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section { background:var(--white); }

.cat-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-template-rows:220px 220px;
  gap:18px;
}
.cat-card {
  position:relative; border-radius:var(--radius); overflow:hidden;
  background-size:cover; background-position:center;
  display:flex; align-items:flex-end;
  transition:transform .5s var(--ease), box-shadow .5s;
  cursor:pointer;
}
.cat-card::before {
  content:''; position:absolute; inset:0;
  border-radius:inherit;
  border:1.5px solid transparent;
  background:linear-gradient(135deg,rgba(255,107,43,.0),rgba(124,58,237,.0)) border-box;
  -webkit-mask:linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:destination-out;
  mask-composite:exclude;
  transition:all .4s;
  z-index:3;
}
.cat-card:hover::before {
  background:linear-gradient(135deg,rgba(255,107,43,.7),rgba(124,58,237,.5)) border-box;
}
.cat-card:hover { transform:scale(1.02) translateY(-4px); box-shadow:0 24px 60px rgba(0,0,0,.3); }
.cat-lg   { grid-row:span 2; }

.cat-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(5,10,30,.85) 0%,rgba(0,0,0,.15) 50%,transparent 100%);
  transition:opacity .4s;
}
.cat-card:hover .cat-overlay { opacity:.9; }

.cat-info {
  position:relative; z-index:1; padding:24px;
  display:flex; flex-direction:column; gap:5px;
}
.cat-info i {
  font-size:1.3rem; color:var(--orange);
  filter:drop-shadow(0 0 10px rgba(255,107,43,.5));
  margin-bottom:5px;
  transition:transform .3s var(--ease-spring);
}
.cat-card:hover .cat-info i { transform:scale(1.2); }
.cat-info h3  { font-size:1.02rem; font-weight:700; color:#fff; margin:0; }
.cat-info span{
  font-size:.78rem; color:rgba(255,255,255,.65);
  background:rgba(255,255,255,.12); backdrop-filter:blur(6px);
  padding:3px 10px; border-radius:999px; width:fit-content;
  border:1px solid rgba(255,255,255,.15);
}

/* ============================================================
   TRIPS / FILTER
   ============================================================ */
.trips-section {
  background:linear-gradient(180deg, var(--light) 0%, rgba(248,250,255,.5) 100%);
  padding:40px 0 36px;
}
.trips-section .section-header { margin-bottom:20px; }
.trips-section .section-header h2 { font-size:clamp(1.5rem,3vw,2.1rem); }
.trips-section .section-header p  { font-size:.9rem; margin-top:6px; }
.trips-section .filter-bar { margin-bottom:20px; }

.filter-bar {
  display:flex; flex-wrap:wrap; gap:10px;
  margin-bottom:44px; justify-content:center;
}
.fbtn {
  padding:9px 24px; border-radius:999px;
  font-size:.84rem; font-weight:600;
  color:var(--muted); background:#fff;
  border:1.5px solid #E5E7EB;
  transition:all .3s var(--ease);
}
.fbtn:hover  { border-color:var(--orange); color:var(--orange); transform:translateY(-1px); }
.fbtn.active {
  background:var(--grad-brand); color:#fff;
  border-color:transparent;
  box-shadow:0 6px 20px rgba(255,107,43,.4);
}

.trips-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
/* Only show first 4 cards */
.trips-grid .tcard:nth-child(n+5) { display:none !important; }
.tcard {
  background:#fff; border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
  transition:transform .4s var(--ease), box-shadow .4s;
  border:1px solid rgba(0,0,0,.04);
  position:relative;
}
.tcard::after {
  content:''; position:absolute; inset:0;
  border-radius:inherit;
  border:1.5px solid transparent;
  pointer-events:none; z-index:2;
  transition:border-color .4s;
}
.tcard:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 56px rgba(255,107,43,.14), 0 8px 24px rgba(0,0,0,.1);
}
.tcard:hover::after { border-color:rgba(255,107,43,.2); }
.tcard.hidden { display:none; }

.tcard-img { position:relative; height:178px; overflow:hidden; }
.tcard-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.tcard:hover .tcard-img img { transform:scale(1.08); }

/* Gradient overlay on image */
.tcard-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(5,13,31,.5) 0%,transparent 50%);
  pointer-events:none;
}

.tcard-badge {
  position:absolute; top:14px; left:14px; z-index:2;
  background:var(--grad-brand); color:#fff;
  font-size:.68rem; font-weight:700; letter-spacing:.05em;
  padding:4px 12px; border-radius:999px; text-transform:uppercase;
  box-shadow:0 4px 12px rgba(255,107,43,.4);
}
.badge-green { background:linear-gradient(135deg,#10B981,#34D399); box-shadow:0 4px 12px rgba(16,185,129,.3); }
.badge-amber { background:linear-gradient(135deg,#F59E0B,#FBBF24); box-shadow:0 4px 12px rgba(245,158,11,.3); }

.tcard-wish {
  position:absolute; top:14px; right:14px; z-index:2;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.92); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  transition:transform .3s var(--ease-spring), background .2s;
  font-size:.9rem; color:var(--muted);
  border:1px solid rgba(255,255,255,.5);
}
.tcard-wish:hover { transform:scale(1.15); }
.tcard-wish.active { color:#EF4444; }

.tcard-price {
  position:absolute; bottom:14px; right:14px; z-index:2;
  background:rgba(5,13,31,.85); backdrop-filter:blur(8px);
  color:#fff; padding:7px 14px; border-radius:10px;
  font-size:.96rem; font-weight:700;
  border:1px solid rgba(255,255,255,.12);
}
.tcard-price small { font-size:.68rem; color:rgba(255,255,255,.6); margin-left:2px; }

.tcard-body { padding:14px 16px 16px; }
.tcard-meta {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom:10px;
}
.tcard-meta span { font-size:.74rem; color:var(--muted); display:flex; align-items:center; gap:4px; }
.tcard-meta i    { color:var(--orange); font-size:.7rem; }

.diff { font-size:.69rem; font-weight:700; padding:3px 10px; border-radius:999px; }
.diff-easy { background:#DCFCE7; color:#16A34A; }
.diff-mod  { background:#FEF3C7; color:#B45309; }
.diff-hard { background:#FEE2E2; color:#DC2626; }

.tcard-body h3 { font-size:.95rem; font-weight:700; margin-bottom:7px; line-height:1.3; }

.tcard-rating { display:flex; align-items:center; gap:3px; margin-bottom:10px; }
.tcard-rating i    { color:#FFB347; font-size:.74rem; }
.tcard-rating span { font-size:.78rem; color:var(--muted); margin-left:5px; }

.tcard-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  background:transparent; color:var(--orange);
  border:1.5px solid rgba(255,107,43,.4); border-radius:10px;
  padding:10px 0; font-size:.85rem; font-weight:700;
  transition:all .3s var(--ease); width:100%;
  position:relative; overflow:hidden; z-index:0;
}
.tcard-btn::before {
  content:''; position:absolute; inset:0; z-index:-1;
  background:var(--grad-brand);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.tcard-btn:hover { color:#fff; border-color:transparent; }
.tcard-btn:hover::before { transform:scaleX(1); }

/* ============================================================
   WHY SECTION — Aurora Dark
   ============================================================ */
.why-section {
  background:var(--grad-aurora);
  padding:100px 0;
  position:relative; overflow:hidden;
}
.why-section::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(255,107,43,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 30%, rgba(124,58,237,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(79,70,229,.1) 0%, transparent 60%);
  pointer-events:none;
}

.why-wrap {
  display:grid; grid-template-columns:1fr 1fr; gap:88px;
  align-items:center; max-width:1200px; margin:0 auto; padding:0 28px;
  position:relative; z-index:1;
}

.why-left h2 {
  font-size:clamp(2rem,3.5vw,2.9rem); font-weight:800;
  line-height:1.15; color:#fff; margin:18px 0 22px;
}
.why-left p  {
  font-size:1rem; color:rgba(255,255,255,.58);
  line-height:1.8; margin-bottom:30px; max-width:440px;
}

.why-checklist { display:flex; flex-direction:column; gap:15px; margin-bottom:38px; }
.why-checklist li {
  display:flex; align-items:center; gap:13px;
  font-size:.92rem; color:rgba(255,255,255,.8);
  padding:10px 16px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:background .3s, border-color .3s;
}
.why-checklist li:hover { background:rgba(255,107,43,.08); border-color:rgba(255,107,43,.2); }
.why-checklist li i {
  color:#10B981; font-size:.95rem; flex-shrink:0;
  filter:drop-shadow(0 0 6px rgba(16,185,129,.5));
}

.why-cards { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.wcard {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); padding:26px 22px;
  transition:all .35s var(--ease);
  position:relative; overflow:hidden;
}
.wcard::before {
  content:''; position:absolute; inset:0;
  background:var(--grad-card); opacity:0; transition:opacity .35s;
}
.wcard:hover { border-color:rgba(255,107,43,.3); transform:translateY(-4px); }
.wcard:hover::before { opacity:1; }
.wcard-icon {
  width:48px; height:48px; border-radius:14px;
  background:linear-gradient(135deg,rgba(255,107,43,.2),rgba(124,58,237,.1));
  border:1px solid rgba(255,107,43,.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  transition:transform .3s var(--ease-spring);
}
.wcard:hover .wcard-icon { transform:scale(1.1) rotate(-5deg); }
.wcard-icon i { color:var(--orange); font-size:1.15rem; }
.wcard h4 { font-size:.96rem; font-weight:700; color:#fff; margin-bottom:8px; }
.wcard p  { font-size:.82rem; color:rgba(255,255,255,.48); line-height:1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background:var(--white); }

.steps-row {
  display:flex; align-items:flex-start; justify-content:center; gap:0;
}
.step {
  flex:1; max-width:230px;
  display:flex; flex-direction:column; align-items:center;
  text-align:center; padding:0 18px;
  cursor:default;
}
.step-num {
  font-size:.7rem; font-weight:800; letter-spacing:.14em;
  background:var(--grad-brand);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; margin-bottom:14px;
}
.step-icon {
  width:70px; height:70px; border-radius:50%;
  background:linear-gradient(135deg,rgba(255,107,43,.08),rgba(124,58,237,.06));
  border:2px solid rgba(255,107,43,.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  transition:all .4s var(--ease-spring);
  position:relative;
}
.step-icon::before {
  content:''; position:absolute; inset:-4px;
  border-radius:50%; border:1.5px solid transparent;
  background:linear-gradient(135deg,rgba(255,107,43,.4),rgba(124,58,237,.3)) border-box;
  -webkit-mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:destination-out; mask-composite:exclude;
  opacity:0; transition:opacity .4s;
}
.step:hover .step-icon { background:var(--grad-brand); border-color:transparent; box-shadow:var(--glow-orange); }
.step:hover .step-icon::before { opacity:1; }
.step:hover .step-icon i { color:#fff; transform:scale(1.1); }
.step-icon i { font-size:1.4rem; color:var(--orange); transition:color .3s, transform .3s; }
.step h4 { font-size:.96rem; font-weight:700; margin-bottom:9px; }
.step p  { font-size:.82rem; color:var(--muted); line-height:1.7; }

.step-line {
  flex:0 0 60px; height:2px; margin-top:47px;
  background:linear-gradient(90deg,rgba(255,107,43,.6),rgba(124,58,237,.3),rgba(255,107,43,.1));
  border-radius:999px; position:relative;
}
.step-line::after {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:8px; height:8px; border-radius:50%;
  background:var(--orange); box-shadow:0 0 10px rgba(255,107,43,.6);
}

/* ============================================================
   UPCOMING DEPARTURES — Card Grid
   ============================================================ */
.dep-section {
  background:linear-gradient(160deg,#F9F6F1 0%,#EEF2FF 50%,#F9F6F1 100%);
  padding:52px 0 60px;
}

/* Header row */
.dep-top {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:32px;
}
.dep-heading {
  font-size:2rem; font-weight:800; color:var(--text);
  margin:6px 0 4px; line-height:1.2;
}
.dep-sub { font-size:.9rem; color:var(--muted); margin:0; }

.btn-ghost {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 20px; border-radius:999px;
  border:2px solid var(--orange); color:var(--orange);
  font-size:.84rem; font-weight:700;
  transition:background .25s, color .25s;
  white-space:nowrap;
}
.btn-ghost:hover { background:var(--orange); color:#fff; }

/* Cards row */
.dep-cards {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

/* Individual card */
.dep-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
  border:1px solid rgba(0,0,0,.05);
  display:flex; flex-direction:column;
  transition:transform .3s var(--ease-spring), box-shadow .3s;
}
.dep-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,.13);
}

/* Image container */
.dep-card-img {
  position:relative;
  height:180px;
  overflow:hidden;
}
.dep-card-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.dep-card:hover .dep-card-img img { transform:scale(1.07); }

/* Date badge — top left */
.dep-card-date {
  position:absolute; top:10px; left:10px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  color:#fff; font-size:.72rem; font-weight:700;
  padding:4px 9px; border-radius:999px;
  display:flex; align-items:center; gap:5px;
}
.dep-card-date i { color:#FFD166; }

/* Seats badge — bottom left */
.dep-card-seats {
  position:absolute; bottom:10px; left:10px;
  font-size:.68rem; font-weight:700;
  padding:4px 9px; border-radius:999px;
  display:flex; align-items:center; gap:4px;
}
.dep-card-seats.low {
  background:#FEE2E2; color:#DC2626;
  animation:seatPulse 2s ease-in-out infinite;
}
.dep-card-seats.avail { background:#DCFCE7; color:#16A34A; }
@keyframes seatPulse { 0%,100%{box-shadow:0 0 0 0 rgba(220,38,38,.2)} 50%{box-shadow:0 0 0 5px rgba(220,38,38,.12)} }

/* Card body */
.dep-card-body {
  padding:14px 16px 16px;
  display:flex; flex-direction:column; flex:1;
}
.dep-card-body h4 {
  font-size:.95rem; font-weight:800; color:var(--text);
  margin:0 0 3px;
}
.dep-card-body > p {
  font-size:.78rem; color:var(--muted);
  margin:0 0 10px;
}

/* Duration + price row */
.dep-card-row {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:12px;
}
.dep-card-row span {
  font-size:.78rem; color:var(--muted);
  display:flex; align-items:center; gap:4px;
}
.dep-card-row span i { color:var(--orange); }
.dep-card-row strong {
  font-size:.98rem; font-weight:800; color:var(--orange);
}

/* Book Now CTA */
.dep-card-btn {
  display:flex; align-items:center; justify-content:center; gap:6px;
  background:var(--grad-brand); color:#fff;
  padding:9px 0; border-radius:10px;
  font-size:.82rem; font-weight:700;
  margin-top:auto;
  box-shadow:0 4px 14px rgba(255,107,43,.3);
  transition:transform .25s var(--ease-spring), box-shadow .25s;
}
.dep-card-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(255,107,43,.45);
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.google-reviews-section {
  background:#0d1b2a;
  padding:64px 0;
  color:#fff;
}
.google-reviews-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:28px;
}
.google-reviews-head .section-tag { margin-bottom:8px; }
.google-reviews-head h2 { font-size:2rem; font-weight:800; margin:0 0 8px; }
.google-reviews-head p { color:rgba(255,255,255,.68); max-width:650px; line-height:1.7; }
.google-reviews-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:0 20px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:8px;
  font-size:.86rem;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 8px 24px rgba(255,107,43,.28);
}
.google-reviews-body {
  display:grid;
  grid-template-columns:minmax(260px, .72fr) minmax(420px, 1.28fr);
  gap:18px;
  align-items:stretch;
}
.google-business-card {
  display:flex;
  align-items:center;
  gap:16px;
  padding:28px;
  background:#fff;
  color:var(--text);
  border-radius:8px;
}
.google-mark {
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  flex:0 0 54px;
  border:1px solid #e3e8f0;
  border-radius:50%;
}
.google-mark img { display:block; width:32px; height:32px; }
.google-business-card > div:nth-child(2) { flex:1; min-width:0; }
.google-business-label { color:#667085; font-size:.72rem; font-weight:700; text-transform:uppercase; }
.google-business-card h3 { margin:5px 0; font-size:1.2rem; }
.google-business-card p { color:#64748b; font-size:.86rem; }
.google-business-card p i { color:var(--orange); margin-right:6px; }
.google-business-card > a {
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  flex:0 0 40px;
  border:1px solid #dde3ec;
  border-radius:50%;
  color:#475569;
}
.google-map-frame { min-height:250px; overflow:hidden; border-radius:8px; background:#eef2f7; }
.google-map-frame iframe { display:block; width:100%; height:100%; min-height:250px; border:0; }
.google-reviews-note { margin:14px 0 0; color:rgba(255,255,255,.55); font-size:.76rem; }
.google-reviews-note i { color:#34a853; margin-right:6px; }

@media (max-width:600px) {
  .google-reviews-section { padding:48px 0; }
  .google-reviews-head h2 { font-size:1.65rem; }
  .google-reviews-link { width:100%; }
  .google-business-card { padding:20px; gap:12px; }
  .google-mark { width:46px; height:46px; flex-basis:46px; font-size:1.5rem; }
  .google-business-card h3 { font-size:1rem; }
  .google-business-card > a { width:36px; height:36px; flex-basis:36px; }
  .google-map-frame, .google-map-frame iframe { min-height:280px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background:#fff;
  padding:80px 0 60px;
  position:relative;
  overflow:hidden;
}

/* Decorative */
.gal-deco-arc {
  position:absolute; right:-80px; top:-60px;
  width:380px; pointer-events:none; z-index:0;
}
.gal-deco-wave {
  position:absolute; left:30px; bottom:80px;
  width:110px; pointer-events:none; z-index:0;
}
.gal-deco-plane {
  position:absolute; left:10px; top:60px;
  width:80px; opacity:0.7; pointer-events:none; z-index:0;
}

/* Heading */
.gal-header { text-align:center; margin-bottom:48px; position:relative; z-index:1; }
.gal-kicker {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid rgba(255,107,43,.18);
  background:rgba(255,247,240,.92);
  color:var(--orange);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.gal-kicker::before {
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--orange);
}
.gal-subtitle {
  font-family:'Dancing Script', cursive;
  font-size:1.8rem; font-weight:700;
  color:#1a4a5c; margin:0 0 8px; line-height:1.3;
}
.gal-title {
  max-width:900px;
  margin:0 auto;
  font-size:clamp(2.3rem, 4vw, 3.2rem);
  font-weight:800;
  color:#0d1f2d;
  line-height:1.12;
  letter-spacing:-.03em;
}
.gal-copy {
  max-width:760px;
  margin:16px auto 0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}

.gallery-intro-bar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin:0 0 24px;
  padding:20px 24px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,240,.96));
  border:1px solid rgba(255,107,43,.10);
  box-shadow:0 18px 50px rgba(15,23,42,.06);
  position:relative;
  z-index:1;
}
.gallery-footer-cta {
  display:flex;
  justify-content:center;
  margin-top:26px;
  position:relative;
  z-index:1;
}
.gallery-intro-stat {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.gallery-intro-stat strong {
  color:#102033;
  font-size:1.08rem;
  font-weight:800;
}
.gallery-intro-stat span {
  color:var(--muted);
  font-size:.95rem;
  line-height:1.7;
}
.gallery-follow-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 18px;
  border-radius:999px;
  background:#0f1b3d;
  color:#fff;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 16px 34px rgba(15,27,61,.16);
}
.gallery-follow-btn:hover {
  color:#fff;
  transform:translateY(-2px);
}

.gallery-showcase {
  display:grid;
  grid-template-columns:minmax(0, 1.55fr) minmax(300px, .62fr);
  gap:26px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

.gallery-mosaic {
  display:grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr 1.05fr;
  gap:14px;
  align-items:stretch;
  position:relative; z-index:1;
  padding:18px;
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,245,.95)),
    radial-gradient(circle at top left, rgba(255,107,43,.05), transparent 42%);
  border:1px solid rgba(255,107,43,.10);
  box-shadow:0 28px 80px rgba(15,23,42,.10);
}

.gm-single {
  position:relative;
  height:340px;
  border-radius:24px; overflow:hidden;
  isolation:isolate;
  box-shadow:0 18px 44px rgba(15,23,42,.16);
}
.gm-single img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .6s var(--ease);
}
.gm-single:hover img { transform:scale(1.06); }

.gm-hero {
  position:relative;
  height:340px;
  border-radius:26px; overflow:hidden;
  isolation:isolate;
  box-shadow:0 20px 52px rgba(15,23,42,.18);
}
.gm-hero img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition:transform .6s var(--ease);
}
.gm-hero:hover img { transform:scale(1.06); }

.gm-stack {
  display:flex; flex-direction:column;
  gap:12px; height:340px;
}
.gm-tile {
  position:relative;
  flex:1;
  min-height:0;
  border-radius:24px;
  overflow:hidden;
  isolation:isolate;
  box-shadow:0 16px 36px rgba(15,23,42,.14);
}
.gm-stack img {
  flex:1; min-height:0;
  width:100%; object-fit:cover; display:block;
  transition:transform .6s var(--ease);
}
.gm-stack img:hover { transform:scale(1.06); }

.gm-single::after,
.gm-hero::after,
.gm-tile::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,23,51,0) 20%, rgba(11,23,51,.14) 54%, rgba(11,23,51,.72) 100%);
  pointer-events:none;
}
.gm-caption {
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
}
.gm-caption span {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.05em;
  backdrop-filter:blur(14px);
  box-shadow:0 12px 28px rgba(15,23,42,.18);
}
.gm-caption span::before {
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ffb347;
}

.gallery-sidecard {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
  padding:30px 28px;
  border-radius:30px;
  background:linear-gradient(180deg, #0d1733 0%, #162449 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 26px 70px rgba(8,18,43,.20);
}
.gallery-sidecard-tag {
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#ffb347;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.gallery-sidecard h3 {
  margin:0;
  font-size:1.8rem;
  line-height:1.15;
  letter-spacing:-.03em;
  color:#fff;
}
.gallery-sidecard p {
  margin:0;
  color:rgba(255,255,255,.74);
  font-size:.95rem;
  line-height:1.8;
}
.gallery-points {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.gallery-points li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.86);
  font-size:.9rem;
  line-height:1.7;
}
.gallery-points i {
  color:#ffb347;
  margin-top:3px;
}

.insta-line {
  text-align:center; margin-top:28px;
  font-size:.98rem; color:var(--muted);
  position:relative; z-index:1;
}
.insta-line i { color:#E1306C; margin-right:5px; }
.insta-line a { color:var(--orange); font-weight:700; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.nl-section { position:relative; padding:100px 0; overflow:hidden; }
.nl-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.nl-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(5,13,31,.88),rgba(20,5,40,.92));
}
.nl-section::before {
  content:''; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%,rgba(255,107,43,.1),transparent),
    radial-gradient(ellipse 50% 60% at 80% 50%,rgba(124,58,237,.12),transparent);
}
.nl-section .container { position:relative; z-index:2; display:flex; justify-content:center; }

.nl-box {
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(24px) saturate(150%);
  border:1px solid rgba(255,255,255,.1);
  border-radius:26px;
  padding:60px 52px; text-align:center; max-width:620px; width:100%;
  box-shadow:0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05) inset;
  position:relative; overflow:hidden;
}
.nl-box::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,107,43,.06),rgba(124,58,237,.04));
  pointer-events:none;
}
.nl-icon {
  font-size:2.4rem; color:var(--orange);
  margin-bottom:18px; display:block;
  filter:drop-shadow(0 0 16px rgba(255,107,43,.5));
  animation:floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.nl-box h2 {
  font-size:2.1rem; font-weight:800; color:#fff; margin-bottom:14px;
  letter-spacing:-.02em;
}
.nl-box > p { color:rgba(255,255,255,.62); margin-bottom:30px; font-size:.96rem; line-height:1.7; }
.nl-box small { font-size:.74rem; color:rgba(255,255,255,.38); margin-top:18px; display:block; }

.nl-form {
  display:flex; border-radius:14px; overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.1);
}
.nl-form input {
  flex:1; padding:16px 22px; border:none; outline:none;
  font-size:.9rem; background:rgba(255,255,255,.94); color:var(--text);
  font-weight:500;
}
.nl-form button {
  background:var(--grad-brand); color:#fff;
  padding:0 30px; font-size:.88rem; font-weight:700;
  display:flex; align-items:center; gap:9px;
  transition:filter .3s; white-space:nowrap;
}
.nl-form button:hover { filter:brightness(1.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  background: linear-gradient(180deg, #050D1F 0%, #0A1525 100%);
  position: relative;
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
  color: #fff;
}

/* Subtle World Map Pattern */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
  opacity: 0.05;
  pointer-events: none;
}

/* Premium Top Wave/Curve */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff; /* Matches the section above if it's white */
  clip-path: ellipse(60% 100% at 50% 0%);
  z-index: 1;
}

/* Adjust padding for inner container to avoid being covered by curve */
.footer .container {
  position: relative;
  z-index: 2;
}
/* Accent Line on top of curve */
.footer-accent-line {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--accent), transparent);
  z-index: 2;
  opacity: 0.6;
}

.footer-top {
  display:grid; grid-template-columns:1.6fr 0.9fr 0.9fr 0.9fr 1.3fr; gap:40px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p { 
  font-size:.95rem; 
  color:rgba(255,255,255,.6); 
  line-height:1.8; 
  max-width:320px; 
  margin-top:15px; 
}
.footer-logo {
  width:150px;
  height:auto;
  margin-bottom:16px;
}
.footer-socials { display:flex; gap:10px; margin-top:22px; }
.footer-socials a {
  width:44px; height:44px; border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.7); font-size:1.1rem;
  transition:all .4s var(--ease-spring);
}
.footer-socials a:hover {
  background:var(--grad-brand); border-color:transparent;
  color:#fff; transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(255,107,43,.35);
}

.footer-links h5,
.footer-contact-col h5 {
  font-size:.9rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  color:#fff; margin-bottom:24px;
  position:relative; padding-bottom:14px;
}
.footer-links h5::after,
.footer-contact-col h5::after {
  content:''; position:absolute; bottom:0; left:0;
  width:24px; height:2px;
  background:var(--grad-brand); border-radius:999px;
}
.footer-links ul { display:flex; flex-direction:column; gap:11px; }
.footer-links li a {
  font-size:.92rem; color:rgba(255,255,255,.6);
  transition:all .3s var(--ease);
  display:flex; align-items:center; gap:10px;
}
.footer-links li a::before {
  content:''; width:0; height:1.5px; background:var(--orange);
  transition:width .25s; border-radius:999px;
  flex-shrink:0;
}
.footer-links li a:hover { color:var(--orange); padding-left:4px; }
.footer-links li a:hover::before { width:12px; }

.fcontact-item { display:flex; align-items:center; gap:11px; margin-bottom:12px; }
.fcontact-item i { color:var(--orange); width:17px; flex-shrink:0; }
.fcontact-item a, .fcontact-item span { font-size:.92rem; color:rgba(255,255,255,.65); transition:color .25s; }
.fcontact-item a:hover { color:var(--orange); }

.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 0;
}
.footer-bottom p { font-size:.85rem; color:rgba(255,255,255,.4); }
.footer-bottom-links { display:flex; flex-wrap:wrap; gap:10px 22px; justify-content:flex-end; }
.footer-bottom-links a { font-size:.85rem; color:rgba(255,255,255,.4); transition:color .25s; }
.footer-bottom-links a:hover { color:var(--orange); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.wa-btn {
  position:fixed; bottom:26px; left:26px; z-index:999;
  width:54px; height:54px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#1DA851); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  transition:transform .3s var(--ease-spring), box-shadow .3s;
  animation:waggle 5s 3s ease-in-out infinite;
}
.wa-btn:hover { transform:scale(1.12); box-shadow:0 10px 30px rgba(37,211,102,.55); animation:none; }
@keyframes waggle {
  0%,80%,100%{transform:rotate(0)} 85%{transform:rotate(-13deg)} 90%{transform:rotate(13deg)}
  95%{transform:rotate(-8deg)} 97%{transform:rotate(8deg)}
}

.top-btn {
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:46px; height:46px; border-radius:50%;
  background:var(--grad-brand); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; opacity:0; pointer-events:none;
  box-shadow:0 4px 18px rgba(255,107,43,.45);
  transition:opacity .35s, transform .35s var(--ease-spring);
  transform:translateY(12px) scale(.9);
}
.top-btn.visible { opacity:1; pointer-events:auto; transform:translateY(0) scale(1); }
.top-btn:hover { box-shadow:0 8px 28px rgba(255,107,43,.55); transform:translateY(-2px) scale(1.05); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position:fixed; inset:0; z-index:9999;
  background:rgba(5,13,31,.96); backdrop-filter:blur(12px);
  display:none; align-items:center; justify-content:center;
}
.lightbox.open { display:flex; animation:lbOpen .3s var(--ease); }
@keyframes lbOpen { from{opacity:0} to{opacity:1} }
#lbImg {
  max-width:90vw; max-height:88vh;
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-xl);
  animation:lbImage .35s var(--ease-spring);
}
@keyframes lbImage { from{transform:scale(.9)} to{transform:scale(1)} }
.lb-close {
  position:absolute; top:22px; right:26px;
  font-size:1.3rem; color:rgba(255,255,255,.7);
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.08); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.lb-close:hover { color:#fff; background:rgba(255,107,43,.3); border-color:rgba(255,107,43,.4); transform:rotate(90deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .dep-cards { grid-template-columns:repeat(3,1fr); gap:14px; }
  .why-wrap { grid-template-columns:1fr; gap:52px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  .container { padding: 0 22px; }
}

@media (max-width:1279px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-inner, .nav-container {
    padding: 0 18px;
  }
  .nav-logo {
    margin-right: 0;
  }
  .logo-img {
    height: 34px;
  }
  .nav-cta, .nav-actions {
    gap: 10px;
    padding-left: 10px;
  }
  .btn-plan {
    padding: 8px 14px;
    font-size: .78rem;
  }
}

@media (max-width:768px) {
  .section { padding:72px 0; }
  .section-header { margin-bottom:40px; }
  .section-header p { max-width: 100%; }

  body {
    padding-top: var(--nav-height);
  }

  .nav-cta .nav-phone span { display:none; }
  .nav-cta {
    margin-left: auto;
    padding-left: 8px;
  }
  .btn-plan { padding:9px 16px; font-size:.8rem; }
  .mob-drawer { width:min(360px, 92vw); }
  .mob-head { padding:18px 18px; }
  .mob-link,
  .mob-sect summary { padding-left:18px; padding-right:18px; }
  .mob-sub-head { padding-left:22px; padding-right:22px; }
  .mob-sub a { padding-left:22px; padding-right:22px; }
  .mob-footer { padding:16px 18px; }

  .hero {
    min-height: 760px;
    height: auto;
  }
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 88px;
    padding-bottom: 44px;
  }
  .hero-eyebrow {
    font-size: .68rem;
    padding: 7px 14px;
    margin-bottom: 18px;
  }
  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: .96rem;
    line-height: 1.68;
    margin-bottom: 22px;
  }
  .hero-actions {
    width:100%;
    flex-direction:column;
    gap:10px;
    margin-bottom:18px;
  }
  .hero-btn {
    width:min(100%, 320px);
    min-height:50px;
  }
  .hero-search {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .search-group {
    padding: 14px 18px;
  }
  .search-sep {
    width: auto;
    height: 1px;
    margin: 0 18px;
  }
  .search-btn {
    min-height: 56px;
    justify-content: center;
    width: 100%;
  }
  .hero-pills {
    gap: 8px;
  }
  .pill {
    padding: 6px 12px;
    font-size: .74rem;
  }
  
  .hero-stats-bar {
    flex-wrap: nowrap;
    padding: 14px 10px;
    gap: 4px;
    justify-content: space-between;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .hstat { padding: 0 2px; flex: 1 1 0; min-width: 0; text-align: center; gap: 1px; }
  .hstat strong { font-size: 1.05rem; white-space: nowrap; }
  .hstat span { font-size: .58rem; line-height: 1.25; }
  .hstat-sep { display: block; height: 28px; flex-shrink: 0; }
  /* The dots' old mobile position (right:15px, vertically centered) sat
     directly on top of the hero CTA buttons, which are also centered in
     that zone. They're an 8px touch target too, well under a usable
     mobile tap size, so hide them here rather than find another spot --
     the hero still autoplays without manual dot navigation. */
  .slide-dots { display: none; }

  .cat-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .cat-lg   { grid-row:span 1; }

  .trips-grid { grid-template-columns:1fr 1fr; }
  .trips-grid .tcard:nth-child(n+5) { display:none !important; }

  .dep-cards { grid-template-columns:repeat(2,1fr); gap:14px; }
  .dep-top { flex-direction:column; align-items:flex-start; gap:14px; }

  .google-reviews-head { flex-direction:column; align-items:flex-start; gap:18px; }
  .google-reviews-body { grid-template-columns:1fr; }

  .gallery-showcase { grid-template-columns:1fr; gap:18px; }
  /* .gallery-mosaic/.gm-* sizing for this breakpoint lives in the
     consolidated @media (max-width:768px) block further down --
     having it duplicated here too (with different, mismatched values)
     is exactly what caused the misaligned hero tile bug. */
  .gallery-sidecard { padding:24px 20px; border-radius:24px; }
  .gallery-sidecard h3 { font-size:1.45rem; }

  .why-cards { grid-template-columns: 1fr; }

  .steps-row { flex-wrap: wrap; justify-content: center; gap: 40px; padding: 0 20px; }
  .step-line { display: none; }
  .step { max-width: 100%; flex: 1 1 100%; text-align: center; }

  .why-left p {
    max-width: 100%;
  }
  .why-cards,
  .feat-grid,
  .trips-grid,
  .cat-grid {
    gap: 14px;
  }

  .nl-box { padding: 45px 24px; }
  .nl-form { flex-direction: column; gap: 12px; }
  .nl-form input { border-radius: 12px; text-align: center; }
  .nl-form button { width: 100%; border-radius: 12px; padding: 16px; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-links h5::after, .footer-contact-col h5::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

  .orb-1 { width: 250px; height: 250px; opacity: 0.5; }
  .orb-2 { width: 180px; height: 180px; opacity: 0.5; }
  .orb-3 { display: none; }
  .wa-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
    font-size: 1.45rem;
  }
  .wa-float::after { display: none; }
  .back-to-top {
    right: 18px;
    bottom: 82px;
  }
}

@media (max-width:480px) {
  .dep-cards { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.7rem; }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    margin-top: 78px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 36px;
  }
  .hero-heading { font-size: 2.1rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-btn {
    min-height: 48px;
    font-size: .84rem;
  }
  .hero-search {
    border-radius: 18px;
  }
  .search-group label {
    font-size: .64rem;
  }
  .search-group input,
  .search-group select {
    font-size: .9rem;
  }
  .hero-stats-bar { padding: 12px 6px; gap: 2px; }
  .hstat { padding: 0 1px; }
  .hstat strong { font-size: .92rem; }
  .hstat span { font-size: .52rem; }
  .hstat-sep { height: 24px; }
  .slide-dots {
    right: 10px;
    gap: 6px;
  }
  
  .gal-kicker { margin-bottom:10px; }
  .gal-subtitle { font-size:1.45rem; }
  .gal-copy { font-size:.92rem; line-height:1.75; }
  /* .gallery-mosaic/.gm-* sizing for this breakpoint lives in the
     consolidated @media (max-width:480px) block further down. */
  .gallery-sidecard { padding:20px 16px; }
  .gallery-sidecard h3 { font-size:1.28rem; }
  .gallery-sidecard p,
  .gallery-points li { font-size:.88rem; }
  
  .nl-box h2 { font-size: 1.5rem; }
  .trips-grid { grid-template-columns: 1fr; }
  .dep-top { gap: 10px; }
  .why-left h2 { font-size: 1.9rem; }
  .why-checklist li,
  .wcard p,
  .step p { font-size: .84rem; }
  .mob-drawer { width: 100vw; }
  .mob-logo { width: 118px; height: 42px; }
  .btn-plan {
    padding: 8px 12px;
    font-size: .74rem;
  }
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--dark); }
::-webkit-scrollbar-thumb { background:var(--grad-brand); border-radius:999px; }
::-webkit-scrollbar-thumb:hover { background:var(--orange-d); }

/* ============================================================
   NEW SECTION KEYFRAMES
   ============================================================ */
@keyframes kenBurns {
  0%   { background-size:110%; }
  100% { background-size:122%; }
}
@keyframes slideContentIn {
  from { opacity:0; transform:translateX(-36px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes progressFill {
  from { width:0%; }
  to   { width:100%; }
}
@keyframes floatY {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-10px); }
}
@keyframes floatYAlt {
  0%,100% { transform:translateY(0) rotate(0deg); }
  50%      { transform:translateY(-7px) rotate(8deg); }
}
@keyframes dotFloat1 {
  0%,100% { transform:translate(0,0); }
  33%      { transform:translate(5px,-7px); }
  66%      { transform:translate(-3px,-4px); }
}
@keyframes dotFloat2 {
  0%,100% { transform:translate(0,0); }
  33%      { transform:translate(-6px,5px); }
  66%      { transform:translate(4px,-6px); }
}
@keyframes dotFloat3 {
  0%,100% { transform:translate(0,0); }
  33%      { transform:translate(4px,6px); }
  66%      { transform:translate(-5px,-3px); }
}
@keyframes iconBounce {
  0%,100% { transform:translateY(0) scale(1); }
  35%      { transform:translateY(-10px) scale(1.1); }
  65%      { transform:translateY(-4px) scale(1.05); }
}
@keyframes scCardReveal {
  from { opacity:0; transform:translateY(48px) scale(.93); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
@keyframes featCardReveal {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmerLine {
  0%   { background-position:-200% center; }
  100% { background-position:200% center; }
}
@keyframes ringPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(255,215,0,.4); }
  50%      { box-shadow:0 0 0 10px rgba(255,215,0,0); }
}

/* ============================================================
   FEATURED EVENT SLIDER
   ============================================================ */
.event-section { background:#F7F7FA; padding:60px 0 0; isolation:isolate; }

.event-slider-wrap {
  position:relative;
  border-radius:22px;
  overflow:hidden;
  height:400px;
  box-shadow:0 28px 80px rgba(0,0,0,.22);
}

.event-track { position:relative; width:100%; height:100%; }

.event-slide {
  position:absolute; inset:0;
  background-size:110%; background-position:center;
  opacity:0; transition:opacity 1.2s var(--ease);
  display:block;
  color:inherit;
  text-decoration:none;
}
.event-slide.active {
  opacity:1;
  animation:kenBurns 8s ease-out forwards;
}
.event-slide.active .event-content {
  animation:slideContentIn .75s var(--ease-out) .2s both;
}

.event-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,13,31,.92) 0%, rgba(5,13,31,.62) 42%, transparent 75%),
    linear-gradient(180deg, rgba(5,13,31,.25) 0%, transparent 40%, rgba(5,13,31,.35) 100%);
}

/* Slide counter top-right */
.ev-counter {
  position:absolute; top:20px; right:20px; z-index:10;
  font-size:.78rem; font-weight:700; color:rgba(255,255,255,.6);
  letter-spacing:.1em;
}
.ev-counter strong { color:#fff; font-size:1rem; }

.event-content {
  position:absolute;
  top:32px;
  left:56px;
  right:auto;
  bottom:auto;
  display:flex; flex-direction:column; justify-content:flex-start;
  padding:0;
  max-width:530px;
  gap:6px;
  z-index:2;
}

.ev-pre {
  font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,.6); margin-bottom:0;
  display:inline-flex; align-items:center; gap:8px;
}
.ev-pre::before {
  content:''; display:inline-block;
  width:28px; height:1.5px;
  background:rgba(255,255,255,.5);
}

.ev-script {
  font-family:'Poppins', sans-serif;
  font-size:3.2rem; font-weight:900;
  color:#FFD700;
  line-height:0.98; margin-bottom:0;
  text-shadow:0 4px 30px rgba(0,0,0,.5);
  letter-spacing:0;
  max-width:8ch;
}

.ev-tagline {
  font-size:1rem; font-weight:500; color:rgba(255,255,255,.85);
  letter-spacing:.03em; margin-bottom:0;
}

.ev-price-box {
  display:inline-flex; flex-direction:column;
  border:1.5px solid rgba(255,215,0,.45);
  border-radius:10px; padding:14px 22px 16px;
  background:rgba(5,13,31,.55);
  backdrop-filter:blur(10px);
  width:max-content;
  min-width:240px;
  max-width:min(320px, calc(100% - 112px));
  position:absolute;
  right:56px;
  top:42px;
  overflow:visible;
  z-index:2;
}

.event-slide:hover .ev-price-box {
  border-color:rgba(255,107,43,.85);
}
/* shimmer sheen on price box */
.ev-price-box::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(105deg, transparent 40%, rgba(255,215,0,.08) 50%, transparent 60%);
  background-size:200% 100%;
  animation:shimmerLine 3s linear infinite;
}
.epb-label {
  font-size:.58rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:3px;
}
.epb-amount {
  display:block;
  font-size:1.7rem; font-weight:900; color:#FFD700;
  line-height:1.18;
  padding-bottom:2px;
  white-space:nowrap;
}
.epb-per { font-size:.72rem; color:rgba(255,255,255,.6); margin-bottom:5px; }
.epb-dur {
  font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.45);
  border-top:1px solid rgba(255,255,255,.15); padding-top:6px; margin-top:3px;
}

/* Progress bar */
.ev-progress {
  position:absolute; bottom:0; left:0; right:0; height:3px;
  background:rgba(255,255,255,.1); z-index:20; overflow:hidden;
}
.ev-progress-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg, #FF6B2B, #FFD700);
}
.ev-progress-fill.running { animation:progressFill 6s linear forwards; }

/* Event arrows */
.event-arr {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.25);
  color:#fff; font-size:.9rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(8px);
  transition:background .3s, border-color .3s, transform .3s;
}
.event-arr:hover {
  background:var(--orange); border-color:var(--orange);
  transform:translateY(-50%) scale(1.1);
}
.event-arr-prev { left:18px; }
.event-arr-next { right:18px; }

/* Event dots */
.event-dots {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  display:flex; gap:7px; z-index:10;
}
.event-dot {
  width:7px; height:7px; border-radius:999px;
  background:rgba(255,255,255,.3); border:none; cursor:pointer;
  transition:width .35s var(--ease), background .35s;
}
.event-dot.active { width:26px; background:#FFD700; }

/* ── Community Trips Banner ────────────────────────────── */
.community-banner {
  display:flex; align-items:stretch;
  border-radius:22px; overflow:hidden;
  margin-top:24px; height:210px;
  text-decoration:none;
  position:relative;
  background:linear-gradient(120deg, #050D1F 0%, #0B2A50 42%, #0A6E80 72%, #06C9B8 100%);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow:0 12px 48px rgba(5,13,31,.55), 0 0 0 1px rgba(255,255,255,.06);
}
.community-banner:hover {
  transform:translateY(-6px) scale(1.006);
  box-shadow:0 28px 72px rgba(5,13,31,.65), 0 0 40px rgba(6,201,184,.2);
}

/* floating plane decoration */
.community-banner::after {
  content:'\f072';
  font-family:'Font Awesome 6 Free'; font-weight:900;
  position:absolute; top:24px; left:270px;
  font-size:2rem; color:rgba(255,255,255,.08);
  transform:rotate(-30deg);
  animation:floatYAlt 4s ease-in-out infinite;
  pointer-events:none;
}

.cb-left {
  flex:1; display:flex; flex-direction:column; justify-content:center;
  padding:0 0 0 52px; position:relative; z-index:1;
  gap:3px;
}
.cb-pre {
  font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.55);
  display:flex; align-items:center;
}
.cb-title {
  font-family:'Dancing Script', cursive;
  font-size:3.8rem; font-weight:800; color:#FFD700;
  line-height:1; text-shadow:0 4px 24px rgba(0,0,0,.45);
}
.cb-suf {
  font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.65);
}
.cb-sub {
  font-size:.84rem; color:rgba(255,255,255,.62);
  margin-top:2px;
}

/* solid orange CTA — high contrast */
.cb-cta {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:14px;
  background:var(--orange); border:none;
  color:#fff; font-size:.8rem; font-weight:700; letter-spacing:.04em;
  padding:10px 22px; border-radius:999px; width:fit-content;
  box-shadow:0 4px 20px rgba(255,107,43,.55);
  transition:background .3s var(--ease), transform .25s var(--ease), box-shadow .3s;
}
.community-banner:hover .cb-cta {
  background:var(--orange-d);
  transform:translateX(5px);
  box-shadow:0 6px 28px rgba(255,107,43,.7);
}

.cb-right {
  width:420px; flex-shrink:0;
  background-size:cover; background-position:center top;
  position:relative;
}
.cb-right::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, #0B2A50 0%, rgba(11,42,80,.65) 28%, rgba(11,42,80,.15) 58%, transparent 100%);
}

/* ============================================================
   TRIP SHOWCASE SECTIONS (India / International / Romantic)
   ============================================================ */
.showcase-section {
  padding:60px 0 48px;
  position:relative;
}

/* Per-section background gradients */
.sc-india    { background:linear-gradient(160deg, #F9F6F1 0%, #F2E8D8 50%, #F9F6F1 100%); }
.sc-intl     { background:linear-gradient(160deg, #F4F6FB 0%, #E5ECFA 50%, #F4F6FB 100%); }
.sc-romantic { background:linear-gradient(150deg, #3B0764 0%, #7E1D6D 25%, #C0185A 55%, #FF4D6D 80%, #FF8FA3 100%); }

/* Category label strip above each showcase */
.sc-section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font); font-size:.72rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  margin-bottom:16px;
  padding:6px 18px 6px 14px;
  border-radius:999px;
  width:fit-content;
}
.sc-india    .sc-section-label { color:#2563EB; background:rgba(37,99,235,.1); border:1px solid rgba(37,99,235,.2); }
.sc-intl     .sc-section-label { color:#7C3AED; background:rgba(124,58,237,.1); border:1px solid rgba(124,58,237,.2); }
.sc-romantic .sc-section-label { color:#FFB3C6; background:rgba(255,255,255,.12); border:1px solid rgba(255,179,198,.35); }

.showcase-wrap {
  border-radius:24px;
  overflow:visible;
  background:transparent;
}

/* Top banner — full-height image header */
.showcase-banner {
  position:relative;
  height:460px;
  border-radius:24px 24px 0 0;
  overflow:hidden;
  background-size:cover; background-position:center;
  transition:transform .7s var(--ease);
}
.showcase-section:hover .showcase-banner { transform:scale(1.008); }

/* Gradient fade at banner bottom — blends into each section's bg colour */
.showcase-banner::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:100px;
  pointer-events:none;
}
.sc-india    .showcase-banner::after { background:linear-gradient(transparent, #F2E8D8); }
.sc-intl     .showcase-banner::after { background:linear-gradient(transparent, #E5ECFA); }
.sc-romantic .showcase-banner::after { background:linear-gradient(transparent, #7E1D6D); }

.showcase-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,10,25,.88) 0%, rgba(5,10,25,.55) 40%, rgba(5,10,25,.08) 100%),
    linear-gradient(180deg, transparent 30%, rgba(5,10,25,.6) 78%, transparent 100%);
}

.showcase-content {
  position:absolute; top:50%; left:0;
  transform:translateY(-50%);
  padding:36px 48px;
  max-width:520px;
}
.showcase-content h2 {
  font-family:var(--font); font-size:3rem; font-weight:900;
  color:#fff; line-height:1.05; margin-bottom:6px;
  letter-spacing:-.02em;
  text-shadow:0 4px 24px rgba(0,0,0,.4);
}
.showcase-content p {
  font-size:.94rem; color:rgba(255,255,255,.68); margin-bottom:24px;
  font-style:italic; letter-spacing:.02em;
}
.showcase-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:#FFD700; color:#111;
  font-size:.92rem; font-weight:800;
  padding:13px 34px; border-radius:999px;
  text-decoration:none;
  transition:background .3s, transform .35s var(--ease-spring), box-shadow .3s, gap .3s;
  box-shadow:0 6px 24px rgba(255,215,0,.5);
  letter-spacing:.02em;
}
.showcase-btn:hover {
  background:#FFC200; transform:translateY(-4px) scale(1.03);
  box-shadow:0 14px 36px rgba(255,215,0,.65); gap:16px;
}

/* ── Cards row below the banner ── */
.showcase-cards-row {
  position:relative; z-index:2;
  display:flex; align-items:center;
  background:transparent;
  border-radius:0 0 24px 24px;
  padding:0 18px 26px;
  gap:4px;
}

.sc-cards {
  display:flex; gap:12px;
  overflow-x:auto; overflow-y:visible;
  scroll-behavior:smooth;
  padding:16px 2px 20px;
  flex:1;
  scrollbar-width:none;
  margin-top:-110px;
}
.sc-cards::-webkit-scrollbar { display:none; }

/* ── Destination card ── */
.sc-card {
  flex-shrink:0;
  width:calc((100% - 4 * 12px) / 5); height:310px;
  border-radius:18px;
  background-size:cover; background-position:center;
  position:relative; overflow:hidden;
  text-decoration:none; display:block;
  box-shadow:0 8px 32px rgba(0,0,0,.22);
  transition:transform .45s var(--ease-spring), box-shadow .4s var(--ease), background-size .6s var(--ease);
}
.sc-card:hover {
  transform:translateY(-14px) scale(1.04);
  box-shadow:0 28px 64px rgba(0,0,0,.32);
  background-size:115%;
}

.sc-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(5,10,25,.04) 25%, rgba(5,10,25,.92) 100%);
  transition:background .4s;
}
.sc-card:hover .sc-overlay {
  background:linear-gradient(180deg, rgba(5,10,25,.12) 15%, rgba(5,10,25,.96) 100%);
}

.sc-info {
  position:absolute; bottom:0; left:0; right:0;
  padding:20px 18px;
  transform:translateY(5px);
  transition:transform .4s var(--ease);
}
.sc-card:hover .sc-info { transform:translateY(0); }

.sc-info h4 {
  font-family:var(--font); font-size:1.18rem; font-weight:800;
  color:#fff; margin-bottom:5px; letter-spacing:-.01em;
  text-shadow:0 2px 8px rgba(0,0,0,.4);
}
.sc-info .sc-destination {
  margin:0 0 8px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
}
.sc-info span {
  font-size:.76rem; font-weight:600;
  color:rgba(255,255,255,.72);
  display:inline-flex; align-items:center; gap:5px;
  transition:color .3s;
}
.sc-card:hover .sc-info span { color:#FFD700; }
/* Keep showcase cards clickable above banner fades/decorations */
.sc-cards,
.sc-card {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
.sc-card .sc-overlay,
.sc-card .sc-info {
  pointer-events: none;
}
.showcase-banner,
.showcase-banner::after,
.showcase-overlay {
  pointer-events: none;
}
.showcase-content,
.showcase-content .showcase-btn {
  pointer-events: auto;
}

/* ── Scroll arrows ── */
.sc-arr {
  flex-shrink:0;
  width:44px; height:44px; border-radius:50%;
  background:#fff; border:1.5px solid #e2e8f0;
  color:var(--text); font-size:.9rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.12);
  transition:background .3s, color .3s, border-color .3s, transform .35s var(--ease-spring), box-shadow .3s;
  z-index:3;
  margin-top:-110px;
}
.sc-arr:hover {
  background:var(--orange); color:#fff; border-color:var(--orange);
  transform:scale(1.16);
  box-shadow:0 6px 22px rgba(255,107,43,.4);
}

/* ============================================================
   FEATURE CARDS (Why Cluster Travels)
   ============================================================ */
.feat-section {
  background:linear-gradient(135deg, #F8FAFF 0%, #FFF5F0 50%, #F0F8FF 100%);
  position:relative; overflow:hidden;
}
/* subtle dot-grid background */
.feat-section::before {
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,107,43,.06) 1.5px, transparent 1.5px);
  background-size:28px 28px;
  pointer-events:none;
}

.feat-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:52px;
  position:relative; z-index:1;
}

.feat-card {
  position:relative;
  border-radius:22px;
  padding:30px 26px 0;
  overflow:hidden;
  background:#fff;
  display:flex; flex-direction:column;
  transition:box-shadow .4s var(--ease), transform .4s var(--ease-spring);
  /* animated gradient border via box-shadow */
  box-shadow:0 0 0 1.5px rgba(255,107,43,.18), 0 6px 24px rgba(0,0,0,.06);
}
.feat-card:hover {
  box-shadow:0 0 0 2px var(--orange), 0 20px 56px rgba(255,107,43,.16);
  transform:translateY(-8px);
}
.feat-card:hover .feat-icon { animation:iconBounce .6s var(--ease-spring) forwards; }

/* top accent line */
.feat-card::after {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px;
  background:var(--grad-brand);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease);
  border-radius:22px 22px 0 0;
}
.feat-card:hover::after { transform:scaleX(1); }

.feat-top { flex:1; }

.feat-card h3 {
  font-family:var(--font); font-size:1.14rem; font-weight:800;
  color:var(--orange); line-height:1.3; margin-bottom:13px;
}

.feat-card p {
  font-size:.84rem; color:var(--muted); line-height:1.7;
}

/* Bottom illustration area */
.feat-bottom {
  position:relative;
  height:115px; margin-top:22px;
  display:flex; align-items:flex-end; justify-content:center;
}

.feat-blob {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:110px; height:85px;
  background:linear-gradient(180deg, rgba(255,107,43,.07) 0%, rgba(255,107,43,.14) 100%);
  border-radius:50% 50% 0 0;
  transition:transform .4s var(--ease), background .4s;
}
.feat-card:hover .feat-blob {
  transform:translateX(-50%) scaleX(1.15);
  background:linear-gradient(180deg, rgba(255,107,43,.12) 0%, rgba(255,107,43,.22) 100%);
}

.feat-icon {
  position:relative; z-index:1;
  font-size:2.4rem;
  color:var(--orange);
  margin-bottom:22px;
}

/* Decorative floating dots */
.feat-dot {
  position:absolute; border-radius:50%;
  width:8px; height:8px;
}
.fd-yellow { background:#FBBF24; }
.fd-red    { background:#EF4444; }
.fd-blue   { background:#3B82F6; }

/* floating animations per position */
.feat-card:nth-child(1) .fd-yellow { top:52px; right:18px; animation:dotFloat1 3.5s ease-in-out infinite; }
.feat-card:nth-child(1) .fd-red    { bottom:32px; left:16px; width:5px;height:5px; animation:dotFloat2 4s ease-in-out infinite .5s; }
.feat-card:nth-child(1) .fd-blue   { top:82px; left:20px; width:6px;height:6px; animation:dotFloat3 3s ease-in-out infinite 1s; }

.feat-card:nth-child(2) .fd-yellow { bottom:50px; right:20px; animation:dotFloat2 4s ease-in-out infinite .3s; }
.feat-card:nth-child(2) .fd-red    { top:42px; left:16px; width:5px;height:5px; animation:dotFloat1 3.2s ease-in-out infinite .7s; }
.feat-card:nth-child(2) .fd-blue   { bottom:30px; left:22px; width:6px;height:6px; animation:dotFloat3 3.8s ease-in-out infinite; }

.feat-card:nth-child(3) .fd-yellow { top:60px; right:16px; animation:dotFloat3 3.6s ease-in-out infinite .4s; }
.feat-card:nth-child(3) .fd-red    { bottom:36px; right:18px; width:5px;height:5px; animation:dotFloat1 4.2s ease-in-out infinite .9s; }
.feat-card:nth-child(3) .fd-blue   { top:92px; left:18px; width:6px;height:6px; animation:dotFloat2 3.4s ease-in-out infinite .2s; }

.feat-card:nth-child(4) .fd-yellow { bottom:46px; left:18px; animation:dotFloat1 3.8s ease-in-out infinite .6s; }
.feat-card:nth-child(4) .fd-red    { top:50px; right:20px; width:5px;height:5px; animation:dotFloat3 3.3s ease-in-out infinite 1.1s; }
.feat-card:nth-child(4) .fd-blue   { bottom:26px; right:16px; width:6px;height:6px; animation:dotFloat2 4.4s ease-in-out infinite .1s; }

/* ── Responsive: new sections ──────────────────────────── */
@media (max-width:1024px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gm-hero { grid-column: span 1; }
  .gm-single,
  .gm-stack,
  .gm-hero { height:300px; }
  .feat-grid { grid-template-columns:repeat(2,1fr); }
  .event-content { top:28px; left:42px; }
  .ev-price-box { right:42px; top:34px; max-width:min(300px, calc(100% - 96px)); }
  .ev-script { font-size:2.8rem; }
  /* 1024px: show 4 cards */
  .sc-card { width:calc((100% - 3 * 12px) / 4); height:265px; }
  .showcase-content h2 { font-size:2.1rem; }
}

@media (max-width:768px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    padding:14px;
  }
  .gm-single,
  .gm-stack,
  .gm-hero {
    height:220px;
  }
  /* On narrower screens the title wraps to multiple lines, which made the
     top-left text and top-right price box/counter collide -- instead of
     juggling coordinates for every combination, stack everything as one
     bottom-anchored column so nothing can overlap regardless of how much
     the title wraps. The stacked text/price block now takes up most of the
     card height, so there's no empty space left for the vertically-centered
     arrows to sit in without landing on the text -- hide them on mobile.
     The slide still auto-advances every 6s and the dots are independently
     tappable to jump to a slide, so navigation still works without them. */
  .event-slider-wrap { height:440px; }
  .event-slide {
    display:flex; flex-direction:column; justify-content:flex-end;
    padding:24px 28px 44px; gap:12px;
  }
  .event-arr { display:none; }
  .event-content { position:relative; top:auto; left:auto; max-width:100%; }
  .ev-price-box {
    position:relative; top:auto; right:auto;
    align-self:flex-start;
    min-width:0; width:auto; max-width:max-content;
    padding:12px 16px 14px;
  }
  .ev-script { font-size:2.1rem; max-width:none; }
  .ev-tagline { font-size:.9rem; margin-bottom:0; }
  .cb-left { padding-left:28px; gap:2px; }
  .cb-right { width:200px; }
  .cb-title { font-size:3rem; }
  .cb-sub { display:none; }
  /* The banner+overlapping-cards effect (cards row pulled up over the
     banner) broke on mobile for two compounding reasons: the overlap
     amount was too large for a short banner, AND banner subtitles come
     from package data of very different lengths (Ladakh's is a short
     tagline, Europe's and Bali's are full sentences) -- a fixed-height
     banner sized for the short one had no room left for the long ones,
     so those sections' buttons got crowded while Ladakh looked fine.
     Fix: clamp the subtitle to 2 lines so every banner has the same
     predictable text height regardless of source content, size the
     banner with enough clearance for that worst case, and use a modest
     (not the old huge) overlap that only eats into the banner's empty
     buffer zone below the button, never the text itself. Arrows stay
     hidden -- the row already scrolls/swipes natively via overflow-x,
     and the ~90px they'd otherwise take is what lets 2 cards fit. */
  .showcase-banner { height:240px; }
  .showcase-content { top:22px; transform:none; padding:0 24px; max-width:calc(100% - 48px); }
  .showcase-content h2 { font-size:1.9rem; }
  .showcase-content p {
    margin-bottom:16px;
    display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;
    overflow:hidden;
  }
  .showcase-btn { padding:10px 26px; font-size:.85rem; }
  .showcase-cards-row { padding:0 18px 20px; }
  .sc-arr { display:none; }
  /* Tested directly: even scroll-snap-type:proximity (not just mandatory)
     rubber-bands a swipe back to its starting card unless the drag clears
     a fairly large distance -- from a user's thumb that reads as "the
     card doesn't move". Dropping snap entirely makes the row track the
     finger 1:1 with plain momentum scrolling, so any swipe, however
     small, actually moves it. Cards are sized so 2 fit fully plus a
     visible slice of a 3rd, which signals "there's more" without relying
     on the arrows we removed. */
  .sc-cards { margin-top:-28px; -webkit-overflow-scrolling:touch; }
  .sc-card { flex:0 0 42%; width:auto; height:200px; }
  .feat-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    gap:12px;
    padding:12px;
    border-radius:24px;
  }
  .gm-single,
  .gm-stack,
  .gm-hero {
    height:220px;
  }
  /* Same bottom-stacked layout as the 768px breakpoint above, just tighter. */
  .event-slider-wrap { height:400px; }
  .event-slide { padding:20px 20px 40px; gap:10px; }
  .ev-script { font-size:1.75rem; max-width:none; }
  .event-content { position:relative; top:auto; left:auto; max-width:100%; }
  .ev-price-box {
    position:relative; top:auto; right:auto;
    align-self:flex-start;
    min-width:0;
    max-width:max-content;
    padding:10px 12px 12px;
  }
  .epb-amount { font-size:1.35rem; }
  .community-banner { height:160px; }
  .cb-title { font-size:2.4rem; }
  .cb-right { width:130px; }
  .cb-cta { margin-top:10px; padding:8px 16px; font-size:.75rem; }
  .showcase-banner { height:220px; }
  .showcase-content { top:18px; padding:0 20px; max-width:calc(100% - 40px); }
  .showcase-content p {
    font-size:.85rem; margin-bottom:12px;
    display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;
    overflow:hidden;
  }
  .sc-cards { margin-top:-24px; -webkit-overflow-scrolling:touch; }
  .sc-card { flex:0 0 42%; width:auto; height:180px; }
  .feat-grid { grid-template-columns:1fr; }
  .showcase-content h2 { font-size:1.5rem; }
  .showcase-btn { padding:9px 22px; font-size:.78rem; }
}

/* ============================================================
   DECORATIVE SKETCH ILLUSTRATIONS
   ============================================================ */

/* Base — all illustrations are absolutely positioned,
   pointer-events off, no user interaction */
.deco-illus {
  position:absolute;
  pointer-events:none;
  user-select:none;
  opacity:0;
  transition:opacity 1.2s ease;
}
.deco-illus.in-view { opacity:1; }

/* ── Airplane — top-right of Categories section ── */
.categories-section { position:relative; overflow:hidden; }
.deco-plane {
  width:340px;
  top:-20px; right:-40px;
  opacity:0;
  animation:decoFloat 7s ease-in-out infinite;
  animation-play-state:paused;
}
.deco-plane.in-view {
  opacity:0.55;
  animation-play-state:running;
}

/* ── Landmark — right side of International showcase ── */
.sc-intl { position:relative; overflow:hidden; }
.deco-landmark {
  width:240px;
  bottom:0; right:20px;
  opacity:0;
  animation:decoSway 8s ease-in-out infinite;
  animation-play-state:paused;
}
.deco-landmark.in-view {
  opacity:0.45;
  animation-play-state:running;
}

/* ── Suitcase — right side of How It Works section ── */
.how-section { position:relative; overflow:hidden; }
.deco-suitcase {
  width:200px;
  top:50%; right:-10px;
  transform:translateY(-50%);
  opacity:0;
  animation:decoBob 6s ease-in-out infinite;
  animation-play-state:paused;
}
.deco-suitcase.in-view {
  opacity:0.5;
  animation-play-state:running;
}

/* ── Paper plane — right side of Newsletter section ── */
.nl-section { position:relative; }
.deco-paperplane {
  width:260px;
  bottom:20px; right:60px;
  opacity:0;
  animation:decoFloat 6s ease-in-out infinite reverse;
  animation-play-state:paused;
}
.deco-paperplane.in-view {
  opacity:0.55;
  animation-play-state:running;
}

/* ── Keyframes ── */
@keyframes decoFloat {
  0%,100% { transform:translateY(0px) rotate(0deg); }
  33%      { transform:translateY(-14px) rotate(1.5deg); }
  66%      { transform:translateY(-6px) rotate(-1deg); }
}
@keyframes decoSway {
  0%,100% { transform:translateX(0px); }
  50%      { transform:translateX(-8px); }
}
@keyframes decoBob {
  0%,100% { transform:translateY(-50%); }
  50%      { transform:translateY(calc(-50% - 12px)); }
}

/* ── Site-wide motion polish ─────────────────────────────── */
.motion-reveal {
  opacity:0;
  transform:translateY(34px);
  transition:
    opacity .72s var(--ease, cubic-bezier(.4,0,.2,1)),
    transform .72s var(--ease, cubic-bezier(.4,0,.2,1)),
    box-shadow .28s ease,
    border-color .28s ease;
  will-change:opacity, transform;
}
.motion-reveal.motion-right {
  transform:translateX(34px);
}
.motion-reveal.motion-scale {
  transform:translateY(28px) scale(.975);
}
.motion-reveal.motion-in {
  opacity:1;
  transform:translate3d(0,0,0) scale(1);
}
.motion-orbits {
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}
.motion-orbits span {
  position:absolute;
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,107,43,.9);
  box-shadow:0 0 0 8px rgba(255,107,43,.12), 0 0 34px rgba(255,107,43,.45);
  animation:motionFloat 7s ease-in-out infinite;
}
.motion-orbits span:nth-child(1) { left:12%; top:28%; animation-delay:.1s; }
.motion-orbits span:nth-child(2) { right:16%; top:22%; width:7px; height:7px; animation-delay:1.4s; background:rgba(255,255,255,.92); }
.motion-orbits span:nth-child(3) { right:28%; bottom:18%; width:11px; height:11px; animation-delay:2.3s; }
@keyframes motionFloat {
  0%,100% { transform:translate3d(0,0,0) scale(1); opacity:.78; }
  35% { transform:translate3d(14px,-18px,0) scale(1.12); opacity:1; }
  70% { transform:translate3d(-10px,10px,0) scale(.9); opacity:.62; }
}
.pkg-hero-content,
.td-hero-content,
.dmc-hero-grid {
  position:relative;
  z-index:2;
}
.btn,
.btn-book,
.btn-orange,
.pkg-book-btn,
.pkg-sticky-btn,
.pkg-modal-submit,
.td-btn-book,
.td-btn-enquire,
.dmc-primary-btn,
.dmc-secondary-btn {
  transition:
    transform .24s var(--ease-spring, cubic-bezier(.34,1.56,.64,1)),
    box-shadow .24s ease,
    filter .24s ease,
    background .24s ease,
    color .24s ease;
}
.btn:hover,
.btn-book:hover,
.btn-orange:hover,
.pkg-book-btn:hover,
.pkg-sticky-btn:hover,
.pkg-modal-submit:hover,
.td-btn-book:hover,
.td-btn-enquire:hover,
.dmc-primary-btn:hover,
.dmc-secondary-btn:hover {
  transform:translateY(-2px);
  filter:brightness(1.04);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }
  .motion-reveal {
    opacity:1 !important;
    transform:none !important;
  }
  .motion-orbits { display:none !important; }
}

/* Hide on small screens to avoid clutter */
@media (max-width:900px) { .deco-illus { display:none; } }

/* ============================================================
   HOMEPAGE FIXES — 2026-08-14
   ============================================================ */
.gallery-section .gal-header {
  max-width: 860px;
  margin: 0 auto 42px;
}

.gallery-section .gal-title {
  /* Base rule's 760px was 2px short of the heading's natural width at
     desktop sizes, wrapping "Real" onto its own line. Widen enough to
     clear that plus font-rendering variance across browsers. */
  max-width: 900px;
  margin: 0 auto;
}

.event-slide .epb-amount {
  font-size: clamp(1.4rem, 2vw, 1.9rem) !important;
  line-height: 1.15 !important;
}
