/* ==========================================================================
   BHAVY TOURS UDAIPUR — Luxury Design System
   Handcrafted CSS3 · No frameworks · Royal Rajasthan Heritage
   Author: Bhavy Tours build
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
--------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --royal-blue: #1b3a8f;
  --royal-blue-600: #16327d;
  --royal-blue-700: #112663;
  --navy: #0b1437;
  --navy-800: #0d1a45;
  --navy-900: #070d24;
  --orange: #f97316;
  --orange-600: #ea6a0c;
  --orange-400: #fb8b3d;
  --gold: #d4af37;
  --gold-soft: #eaca6f;
  --gold-deep: #b8912a;
  --white: #ffffff;
  --beige: #f7f2e9;
  --beige-100: #fbf8f1;
  --beige-200: #f1e9d9;

  /* Text */
  --ink: #10192f;
  --ink-soft: #384056;
  --muted: #6b7392;
  --muted-2: #8b90a6;
  --line: #e7e2d6;
  --line-soft: #efeadf;

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #fbf8f1;
  --bg-navy: #0b1437;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.28);

  /* Luxury gradients */
  --grad-royal: linear-gradient(135deg, #1b3a8f 0%, #112663 55%, #0b1437 100%);
  --grad-sunset: linear-gradient(120deg, #f97316 0%, #f9a825 100%);
  --grad-gold: linear-gradient(120deg, #b8912a 0%, #d4af37 40%, #f0d789 100%);
  --grad-royal-gold: linear-gradient(120deg, #1b3a8f 0%, #24408f 45%, #d4af37 140%);
  --grad-hero-overlay: linear-gradient(180deg, rgba(7, 13, 36, 0.30) 0%, rgba(7, 13, 36, 0.55) 55%, rgba(7, 13, 36, 0.88) 100%);
  --grad-beige: linear-gradient(180deg, #fbf8f1 0%, #f5efe2 100%);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 2px 6px rgba(16, 25, 47, 0.06);
  --sh-sm: 0 6px 18px rgba(16, 25, 47, 0.08);
  --sh-md: 0 16px 40px rgba(16, 25, 47, 0.12);
  --sh-lg: 0 30px 70px rgba(16, 25, 47, 0.18);
  --sh-gold: 0 14px 34px rgba(212, 175, 55, 0.34);
  --sh-orange: 0 14px 34px rgba(249, 115, 22, 0.32);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t-med: 0.4s;
  --t-slow: 0.7s;

  /* Layout */
  --container: 1520px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --header-h: 84px;
}

/* ---------------------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: clip;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--gold); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--beige-100); }
::-webkit-scrollbar-thumb { background: var(--grad-royal); border-radius: 10px; border: 3px solid var(--beige-100); }

/* ---------------------------------------------------------------------------
   3. TYPOGRAPHY
--------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.5rem, 6.2vw, 5.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.95rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.34rem); color: var(--ink-soft); }

.text-gold { color: var(--gold-deep); }
.text-orange { color: var(--orange-600); }
.text-royal { color: var(--royal-blue); }
.gradient-text {
  background: var(--grad-royal-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.gradient-text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------------------------------------------------------------------------
   4. LAYOUT
--------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--grad-beige); }
.section--navy { background: var(--grad-royal); color: #eaf0ff; }
.section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.center { align-items: center; justify-content: center; }
.between { align-items: center; justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.gap-sm { gap: 10px; } .gap-md { gap: 18px; } .gap-lg { gap: 32px; }

/* ---------------------------------------------------------------------------
   5. SECTION HEADERS
--------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.section--navy .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 900px; margin: 0 auto clamp(42px, 5vw, 68px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); }
.section--navy .section-head p { color: #c4cdea; }

/* ---------------------------------------------------------------------------
   6. BUTTONS
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
  position: relative; overflow: hidden; white-space: nowrap; cursor: pointer;
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary { background: var(--grad-sunset); color: #fff; box-shadow: var(--sh-orange); }
.btn--primary:hover { box-shadow: 0 20px 44px rgba(249, 115, 22, 0.44); }
.btn--gold { background: var(--grad-gold); color: var(--navy); box-shadow: var(--sh-gold); }
.btn--gold:hover { box-shadow: 0 20px 44px rgba(212, 175, 55, 0.5); }
.btn--royal { background: var(--grad-royal); color: #fff; box-shadow: var(--sh-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.6px solid var(--line); }
.btn--ghost:hover { border-color: var(--royal-blue); color: var(--royal-blue); }
.btn--glass {
  background: var(--glass); color: #fff; border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--glass:hover { background: rgba(255,255,255,0.24); }
.btn--white { background: #fff; color: var(--royal-blue); box-shadow: var(--sh-sm); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }
/* sheen */
.btn--primary::after, .btn--gold::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn--primary:hover::after, .btn--gold:hover::after { left: 130%; }

/* ---------------------------------------------------------------------------
   7. BADGES / PILLS / CHIPS
--------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.76rem;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(212, 175, 55, 0.14); color: var(--gold-deep);
}
.badge--orange { background: rgba(249, 115, 22, 0.12); color: var(--orange-600); }
.badge--royal { background: rgba(27, 58, 143, 0.10); color: var(--royal-blue); }
.badge--green { background: rgba(22, 163, 74, 0.12); color: #15803d; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--r-pill); font-size: 0.88rem; font-weight: 500;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  transition: all var(--t-fast) var(--ease); cursor: pointer;
}
.chip:hover, .chip.is-active { background: var(--grad-royal); color: #fff; border-color: transparent; box-shadow: var(--sh-sm); }

/* ---------------------------------------------------------------------------
   8. CARDS
--------------------------------------------------------------------------- */
.card {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--line-soft);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  position: relative; height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

/* Media */
.card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,13,36,0.62) 100%);
}
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
/* Category chips sitting over an image — keep them readable on any photo */
.card__tag.badge, .blog-card__cat.badge, .card__tag { background: rgba(11,20,55,0.82); color: #fff; border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 4px 14px rgba(7,13,36,0.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.card__tag svg { color: var(--gold-soft); }
.card__fav { position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--glass-strong); backdrop-filter: blur(8px); color: var(--orange-600); }
.card__price-badge {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: var(--glass-strong); backdrop-filter: blur(10px);
  padding: 7px 14px; border-radius: var(--r-pill); font-weight: 700; color: var(--navy);
  font-family: var(--font-head); font-size: 0.92rem;
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__title { font-size: 1.2rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 0.86rem; }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__meta svg { width: 15px; height: 15px; color: var(--gold-deep); }
.card__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-head); }
.price b { font-size: 1.35rem; color: var(--royal-blue); }
.price s { color: var(--muted-2); font-size: 0.85rem; margin-right: 6px; }
.price small { color: var(--muted); font-size: 0.78rem; }

/* Rating stars */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* ---------------------------------------------------------------------------
   9. FEATURE / ICON CARDS
--------------------------------------------------------------------------- */
.feature {
  background: #fff; border-radius: var(--r-lg); padding: 32px 26px;
  border: 1px solid var(--line-soft); box-shadow: var(--sh-xs);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  height: 100%; position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature:hover::before { transform: scaleX(1); }
.feature__thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 14px; margin-bottom: 20px; display: block; }
.feature:hover .feature__thumb { filter: saturate(1.05); }
.icon-badge {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(27,58,143,0.10), rgba(212,175,55,0.14));
  color: var(--royal-blue); margin-bottom: 18px;
}
.icon-badge svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.94rem; }

/* ---------------------------------------------------------------------------
   10. GLASS PANELS
--------------------------------------------------------------------------- */
.glass {
  background: var(--glass); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: var(--r-lg);
}
.glass-card {
  background: var(--glass-strong); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r-lg); box-shadow: var(--sh-md);
}

/* ---------------------------------------------------------------------------
   11. HEADER / NAV / MEGA MENU
--------------------------------------------------------------------------- */
.topbar {
  background: var(--navy); color: #cdd6f4; font-size: 0.82rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a { color: #cdd6f4; transition: color var(--t-fast); }
.topbar a:hover { color: var(--gold-soft); }
.topbar .flex { gap: 20px; }
.topbar svg { width: 14px; height: 14px; color: var(--gold-soft); vertical-align: -2px; }

.site-header {
  position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t-fast), background var(--t-fast), padding var(--t-fast);
}
.site-header.scrolled { box-shadow: var(--sh-sm); background: rgba(255,255,255,0.94); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  width: 48px; height: 48px; border-radius: 14px; overflow: hidden; box-shadow: var(--sh-sm);
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--navy); line-height: 1; }
.brand__name span { color: var(--gold-deep); }
/* real logo lockup */
.brand__logo { height: 119px; width: auto; display: block; }
.brand__logo--footer { height: 120px; }
@media (max-width: 640px){ .brand__logo { height: 90px; } }
.brand__tag { font-family: var(--font-head); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 5px; padding: 12px 15px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.94rem; color: var(--ink);
  border-radius: var(--r-sm); transition: color var(--t-fast), background var(--t-fast);
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--royal-blue); }
.nav-menu > li > a .caret { width: 15px; height: 15px; transition: transform var(--t-fast); }
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }

/* Dropdown / mega */
.mega, .dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(12px);
  opacity: 0; visibility: hidden; pointer-events: none;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
  z-index: 950;
}
.nav-menu > li:hover .mega, .nav-menu > li:hover .dropdown,
.nav-menu > li:focus-within .mega, .nav-menu > li:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
/* invisible hover-bridge so the menu doesn't vanish when crossing the gap */
.mega::before, .dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 22px; background: transparent; }
/* keep a hover-safe zone on the trigger itself */
.nav-menu > li { padding-bottom: 2px; }
.dropdown { min-width: 260px; padding: 12px; left: 0; transform: translateX(0) translateY(12px); }
.nav-menu > li:hover .dropdown, .nav-menu > li:focus-within .dropdown { transform: translateX(0) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); transition: all var(--t-fast);
}
.dropdown a:hover { background: var(--beige); color: var(--royal-blue); transform: translateX(4px); }
.dropdown a svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }

.mega { width: min(880px, 92vw); padding: 26px; }
.mega__grid { display: grid; grid-template-columns: 1.1fr 1.1fr 1fr; gap: 26px; }
.mega__col h5 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.mega__link { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: var(--r-sm); transition: all var(--t-fast); }
.mega__link:hover { background: var(--beige); transform: translateX(4px); }
.mega__ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(135deg, rgba(27,58,143,0.09), rgba(212,175,55,0.13)); color: var(--royal-blue); flex-shrink: 0; }
.mega__ico svg { width: 20px; height: 20px; }
.mega__ico img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-med) var(--ease); }
.mega__link:hover .mega__ico img { transform: scale(1.08); }
.mega__link b { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.mega__link small { color: var(--muted); font-size: 0.78rem; }
.mega__promo { border-radius: var(--r-md); padding: 22px; color: #fff; background: var(--grad-royal); position: relative; overflow: hidden; }
.mega__promo h4 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.mega__promo p { color: #c4cdea; font-size: 0.85rem; margin-bottom: 16px; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 10px; }
.nav-phone__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(249,115,22,0.12); color: var(--orange-600); }
.nav-phone__ico svg { width: 20px; height: 20px; }
.nav-phone small { display: block; font-size: 0.7rem; color: var(--muted); }
.nav-phone b { font-family: var(--font-head); font-size: 0.98rem; color: var(--navy); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--beige); color: var(--navy); place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------------------
   12. MOBILE NAV
--------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw); z-index: 1000;
  background: #fff; box-shadow: var(--sh-lg); transform: translateX(100%);
  transition: transform var(--t-med) var(--ease); overflow-y: auto; padding: 22px;
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; background: rgba(7,13,36,0.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity var(--t-med); z-index: 999; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: 12px; background: var(--beige); display: grid; place-items: center; }
.mobile-nav__close svg { width: 22px; height: 22px; }
.m-acc { border-bottom: 1px solid var(--line-soft); }
.m-acc__head { display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.m-acc__head svg { width: 20px; height: 20px; transition: transform var(--t-fast); color: var(--muted); }
.m-acc.open .m-acc__head svg { transform: rotate(180deg); }
.m-acc__body { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.m-acc.open .m-acc__body { max-height: 560px; }
.m-acc__body a { display: block; padding: 11px 16px; color: var(--ink-soft); font-size: 0.92rem; }
.m-acc__body a:hover { color: var(--royal-blue); }
.mobile-nav .btn { margin-top: 18px; }

/* ---------------------------------------------------------------------------
   13. HERO
--------------------------------------------------------------------------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s var(--ease); }
.hero__bg .hero-slide.is-active { opacity: 1; }
/* trim the gap right after the hero */
.section--flush-top { padding-top: clamp(30px, 3.6vw, 54px); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero-overlay); }
.hero__glow { position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 20% 30%, rgba(27,58,143,0.35), transparent 70%),
              radial-gradient(50% 40% at 90% 80%, rgba(249,115,22,0.22), transparent 70%); }
.hero__inner { padding: clamp(120px, 16vh, 200px) 0 clamp(60px, 9vh, 110px); max-width: 1040px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 700; }
.hero__lead { font-size: clamp(1.12rem, 2vw, 1.42rem); color: #e7ecfb; max-width: 720px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero__trust .t-item { display: flex; align-items: center; gap: 11px; }
.hero__trust .t-item b { font-family: var(--font-head); font-size: 1.5rem; display: block; line-height: 1; }
.hero__trust .t-item span { font-size: 0.8rem; color: #c3cbe6; }
.hero__trust .t-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--glass-border); color: var(--gold-soft); }
.hero__trust .t-ico svg { width: 22px; height: 22px; }
.hero__divider { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }

/* Search / booking widget */
.search-widget {
  background: var(--glass-strong); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.55); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 12px; position: relative; z-index: 3;
}
.search-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.search-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--ink-soft); transition: all var(--t-fast); }
.search-tab svg { width: 17px; height: 17px; }
.search-tab.is-active { background: var(--grad-royal); color: #fff; box-shadow: var(--sh-sm); }
.search-form { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; padding: 10px 14px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select { border: none; outline: none; background: transparent; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.search-form .btn { height: 100%; min-height: 62px; }

/* ---------------------------------------------------------------------------
   14. STATS / COUNTERS
--------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
.stat { text-align: center; position: relative; }
.stat b { font-family: var(--font-head); font-size: clamp(2.2rem, 4.4vw, 3.2rem); font-weight: 800; display: block; line-height: 1; }
.section--navy .stat b { color: #fff; }
.stat .stat-num { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { display: block; margin-top: 10px; font-size: 0.92rem; color: var(--muted); letter-spacing: 0.02em; }
.section--navy .stat span { color: #c4cdea; }

/* ---------------------------------------------------------------------------
   15. FLEET
--------------------------------------------------------------------------- */
.fleet-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); height: 100%; }
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.fleet-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--beige); position: relative; }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.fleet-card:hover .fleet-card__media img { transform: scale(1.07); }
.fleet-card__body { padding: 22px; }
.fleet-specs { display: flex; gap: 18px; flex-wrap: wrap; margin: 14px 0 18px; }
.fleet-specs .spec { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--ink-soft); }
.fleet-specs svg { width: 17px; height: 17px; color: var(--royal-blue); }

/* ---------------------------------------------------------------------------
   16. DESTINATION CARDS (immersive)
--------------------------------------------------------------------------- */
.dest { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end;
  color: #fff; box-shadow: var(--sh-md); }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); z-index: -2; }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,13,36,0) 30%, rgba(7,13,36,0.82) 100%); transition: background var(--t-med); }
.dest:hover img { transform: scale(1.09); }
.dest:hover::after { background: linear-gradient(180deg, rgba(11,20,55,0.25) 10%, rgba(7,13,36,0.88) 100%); }
.dest__body { padding: 26px; width: 100%; transform: translateY(14px); transition: transform var(--t-med) var(--ease); }
.dest:hover .dest__body { transform: translateY(0); }
.dest__body h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.dest__body p { color: #d7ddf2; font-size: 0.88rem; max-height: 0; opacity: 0; overflow: hidden; transition: all var(--t-med) var(--ease); }
.dest:hover .dest__body p { max-height: 60px; opacity: 1; margin-top: 8px; }
.dest__meta { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gold-soft); }
.dest__meta svg { width: 15px; height: 15px; flex-shrink: 0; }
.dest--tall { min-height: 500px; }

/* ---------------------------------------------------------------------------
   17. TESTIMONIALS
--------------------------------------------------------------------------- */
.reviews-track { display: flex; gap: 24px; transition: transform var(--t-slow) var(--ease); }
.review-card { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); flex: 0 0 calc(33.333% - 16px); position: relative; }
.review-card__quote { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-size: 4rem; color: var(--beige-200); line-height: 1; }
.review-card p { color: var(--ink-soft); margin: 14px 0 20px; position: relative; z-index: 1; }
.review-card__user { display: flex; align-items: center; gap: 13px; }
.review-card__user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-card__user b { font-family: var(--font-head); display: block; color: var(--ink); }
.review-card__user small { color: var(--muted); font-size: 0.8rem; }
.reviews-nav { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.reviews-nav button { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--royal-blue); transition: all var(--t-fast); }
.reviews-nav button:hover { background: var(--grad-royal); color: #fff; border-color: transparent; box-shadow: var(--sh-sm); }
.reviews-nav svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------------------
   18. GALLERY
--------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,20,55,0.6)); opacity: 0; transition: opacity var(--t-med); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 16px; bottom: 14px; color: #fff; z-index: 2; font-family: var(--font-head); font-weight: 600;
  transform: translateY(10px); opacity: 0; transition: all var(--t-med) var(--ease); }
.gallery__item:hover .gallery__cap { transform: translateY(0); opacity: 1; }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(7,13,36,0.92); backdrop-filter: blur(6px);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity var(--t-med); padding: 30px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border); color: #fff; display: grid; place-items: center; }
.lightbox__close svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------------------------
   19. FAQ ACCORDION
--------------------------------------------------------------------------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--t-fast), border-color var(--t-fast); }
.faq-item.open { box-shadow: var(--sh-sm); border-color: rgba(212,175,55,0.5); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); text-align: left; }
.faq-q .faq-ico { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--beige); color: var(--royal-blue); transition: all var(--t-med) var(--ease); }
.faq-item.open .faq-q .faq-ico { background: var(--grad-sunset); color: #fff; transform: rotate(135deg); }
.faq-q .faq-ico svg { width: 18px; height: 18px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-med) var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--muted); }

/* ---------------------------------------------------------------------------
   20. FORMS
--------------------------------------------------------------------------- */
.form-card { background: #fff; border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh-md); border: 1px solid var(--line-soft); }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.input-group { display: flex; flex-direction: column; gap: 7px; }
.input-group label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.input-group label .req { color: var(--orange-600); }
.input-group input, .input-group select, .input-group textarea {
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: var(--beige-100);
  color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); width: 100%;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none; border-color: var(--royal-blue); background: #fff; box-shadow: 0 0 0 4px rgba(27,58,143,0.1);
}
.input-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success { display: none; padding: 16px; border-radius: var(--r-md); background: rgba(22,163,74,0.1); color: #15803d; font-weight: 600; text-align: center; margin-top: 14px; }
.form-success.show { display: block; }

/* ---------------------------------------------------------------------------
   21. BREADCRUMB
--------------------------------------------------------------------------- */
.page-hero { position: relative; padding: clamp(120px, 20vh, 200px) 0 clamp(50px, 8vh, 90px); color: #fff; overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,55,0.65), rgba(7,13,36,0.85)); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #dbe1f5; max-width: 640px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.86rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold-soft); transition: color var(--t-fast); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #b8c0dd; }
.breadcrumb svg { width: 15px; height: 15px; color: #8b93b5; }

/* ---------------------------------------------------------------------------
   22. FLOATING ACTIONS + SCROLL PROGRESS
--------------------------------------------------------------------------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 1200; background: var(--grad-gold); transition: width 0.1s linear; }
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 950; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--sh-md);
  transition: transform var(--t-fast) var(--ease); position: relative; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn.wa { background: #25d366; }
.float-btn.call { background: var(--grad-sunset); }
.float-btn.wa::before, .float-btn.call::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; z-index: -1; animation: pulse-ring 2.2s var(--ease) infinite;
}
.float-btn.wa::before { background: #25d366; }
.float-btn.call::before { background: var(--orange); }
.to-top { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-royal); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--t-med) var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* Sticky enquiry bar (mobile) */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 940; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); box-shadow: 0 -6px 20px rgba(16,25,47,0.1); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; background: #fff; color: var(--navy); }
.mobile-bar a.call { color: var(--orange-600); }
.mobile-bar a.wa { color: #128c4b; }
.mobile-bar svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------------------
   23. FOOTER
--------------------------------------------------------------------------- */
.footer { background: var(--navy); color: #b8c0dd; position: relative; overflow: hidden; }
.footer__glow { position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 0%, rgba(27,58,143,0.4), transparent 70%), radial-gradient(40% 50% at 5% 100%, rgba(249,115,22,0.12), transparent 70%); pointer-events: none; }
.footer__top { padding: clamp(56px, 8vw, 90px) 0 50px; position: relative; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand__name { color: #fff; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--grad-gold); }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: #b8c0dd; font-size: 0.92rem; transition: all var(--t-fast); display: inline-flex; align-items: center; gap: 8px; }
.footer__links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep); opacity: 0; transition: opacity var(--t-fast); }
.footer__links a:hover { color: #fff; transform: translateX(5px); }
.footer__links a:hover::before { opacity: 1; }
.footer__about p { font-size: 0.92rem; margin: 16px 0 20px; color: #a9b2d1; }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; font-size: 0.92rem; }
.footer__contact .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: var(--gold-soft); flex-shrink: 0; }
.footer__contact svg { width: 18px; height: 18px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: #cfd6ee; transition: all var(--t-fast); }
.socials a:hover { background: var(--grad-gold); color: var(--navy); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: 13px 16px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: #fff; }
.newsletter input::placeholder { color: #8891b4; }
.newsletter button { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-sunset); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.newsletter svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; position: relative; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.86rem; color: #97a0c2; }
.footer__bottom a { color: var(--gold-soft); }
.footer__bottom a.dev-credit { color: var(--gold); font-weight: 600; text-decoration: none; }
.footer__bottom a.dev-credit:hover { color: #fff; }

/* ---------------------------------------------------------------------------
   24. SVG DIVIDERS
--------------------------------------------------------------------------- */
.divider { line-height: 0; }
.divider svg { display: block; width: 100%; height: auto; }
.divider--flip svg { transform: rotate(180deg); }

/* ---------------------------------------------------------------------------
   25. CONTENT / PROSE (blog, legal)
--------------------------------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin: 40px 0 16px; font-size: 1.7rem; }
.prose h3 { margin: 30px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose ul { margin: 0 0 20px; padding-left: 4px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 12px; color: var(--ink-soft); }
.prose ul li::before { content: ""; flex-shrink: 0; margin-top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-gold); }
.prose blockquote { border-left: 4px solid var(--gold); background: var(--beige-100); padding: 18px 24px; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 24px 0; font-style: italic; color: var(--ink); }

/* Itinerary timeline */
.timeline { position: relative; padding-left: 42px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), var(--royal-blue)); }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -42px; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--grad-royal); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; box-shadow: 0 0 0 5px var(--beige-100); }
.tl-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 20px 24px; box-shadow: var(--sh-xs); transition: box-shadow var(--t-fast), transform var(--t-fast); }
.tl-card:hover { box-shadow: var(--sh-sm); transform: translateX(4px); }
.tl-day { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.tl-card h4 { font-size: 1.12rem; margin: 4px 0 8px; }
.tl-card p { color: var(--muted); font-size: 0.92rem; }

/* Route timeline (horizontal) */
.route { display: flex; gap: 0; overflow-x: auto; padding: 20px 0; scrollbar-width: thin; }
.route__stop { flex: 0 0 auto; text-align: center; position: relative; min-width: 150px; }
.route__stop::before { content: ""; position: absolute; top: 26px; left: 50%; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); z-index: 0; }
.route__stop:last-child::before { display: none; }
.route__dot { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--gold); color: var(--royal-blue); position: relative; z-index: 1; box-shadow: var(--sh-sm); }
.route__dot svg { width: 24px; height: 24px; }
.route__stop b { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.route__stop small { color: var(--muted); font-size: 0.78rem; }

/* Inclusion / exclusion */
.incex { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incex__box { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-xs); }
.incex__box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 1.2rem; }
.incex__box.inc h3 svg { color: #15803d; }
.incex__box.exc h3 svg { color: #dc2626; }
.incex__box h3 svg { width: 24px; height: 24px; }
.incex__box li { display: flex; gap: 12px; padding: 9px 0; color: var(--ink-soft); font-size: 0.94rem; border-bottom: 1px dashed var(--line-soft); }
.incex__box li:last-child { border-bottom: none; }
.incex__box li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.incex__box.inc li svg { color: #16a34a; }
.incex__box.exc li svg { color: #dc2626; }

/* Price panel */
.price-panel { background: var(--grad-royal); color: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-lg); position: sticky; top: calc(var(--header-h) + 20px); }
.price-panel .pp-eyebrow { color: var(--gold-soft); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.price-panel .pp-price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; margin: 8px 0; }
.price-panel .pp-price s { font-size: 1.1rem; color: #9aa5cf; font-weight: 500; margin-right: 8px; }
.price-panel .pp-price small { font-size: 0.9rem; color: #c4cdea; font-weight: 500; }
.price-panel ul { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.price-panel li { display: flex; gap: 10px; font-size: 0.9rem; color: #dbe1f5; align-items: center; }
.price-panel li svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; }
.price-panel .btn { width: 100%; margin-top: 6px; }
.price-panel .pp-help { text-align: center; margin-top: 14px; font-size: 0.82rem; color: #b6c0e4; }

/* Blog list */
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.blog-card__cat { position: absolute; top: 14px; left: 14px; z-index: 2; }
.blog-card__meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--muted); }
.blog-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card__meta svg { width: 15px; height: 15px; color: var(--gold-deep); }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--royal-blue); font-size: 0.9rem; margin-top: auto; }
.read-more svg { width: 17px; height: 17px; transition: transform var(--t-fast); }
.read-more:hover svg { transform: translateX(4px); }

/* CTA band */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px, 6vw, 70px); color: #fff; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(11,20,55,0.92), rgba(27,58,143,0.78)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbe1f5; }
/* Full-bleed (edge-to-edge) CTA variant */
.cta-full { padding: 0; }
.cta-band--full { border-radius: 0; padding-left: 0; padding-right: 0; padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); }

/* Map placeholder */
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--line-soft); min-height: 380px; position: relative; background: var(--beige); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.split__badge { position: absolute; bottom: 20px; left: 20px; background: var(--glass-strong); backdrop-filter: blur(14px); border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--sh-sm); }
.split__badge b { font-family: var(--font-head); font-size: 1.7rem; color: var(--royal-blue); display: block; line-height: 1; }
.split__badge span { font-size: 0.82rem; color: var(--muted); }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list li .ci { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(22,163,74,0.12); color: #16a34a; margin-top: 1px; }
.check-list li .ci svg { width: 15px; height: 15px; }

/* ---------------------------------------------------------------------------
   26. ANIMATIONS
--------------------------------------------------------------------------- */
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

.hero__bg img { animation: kenburns 18s var(--ease) alternate infinite; }
.float-soft { animation: floaty 6s var(--ease) infinite; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; } .reveal.d5 { transition-delay: 0.40s; } .reveal.d6 { transition-delay: 0.48s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-zoom { opacity: 0; transform: scale(0.94); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-zoom.in { opacity: 1; transform: scale(1); }

/* ---------------------------------------------------------------------------
   27. UTILITIES
--------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; }
.maxw-720 { max-width: 720px; } .maxw-620 { max-width: 620px; }
.mx-auto { margin-inline: auto; }
.relative { position: relative; }
.hide { display: none !important; }
.divider-line { height: 1px; background: var(--line-soft); border: none; }
.pattern-dots { background-image: radial-gradient(var(--line) 1.4px, transparent 1.4px); background-size: 22px 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 20px; z-index: 2000; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, .btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------------------------------------------------------------------------
   28. RESPONSIVE
--------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega { width: min(720px, 92vw); }
  .review-card { flex: 0 0 calc(50% - 12px); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .search-form .btn { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; }
  .price-panel { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .floaties { bottom: 20px; }
  /* hide the top info bar (phone/email/social) on mobile */
  .topbar { display: none !important; }
  .incex { grid-template-columns: 1fr; }
  /* collapse any inline multi-column grid to a single column on mobile */
  .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
/* mobile bottom action bar removed per request */
.mobile-bar { display: none !important; }

/* === TEST: boxier (less rounded) corners site-wide — remove this block to revert === */
:root { --r-sm: 4px; --r-md: 6px; --r-lg: 8px; --r-xl: 10px; }
.card__media, .feature__thumb, .fleet-card__media, .split__media, .dest, .gallery__item, .reel { border-radius: 8px; }

/* ---------------------------------------------------------------------------
   HAPPY GUESTS — Instagram reel-style auto-scrolling slider
--------------------------------------------------------------------------- */
.reels-wrap { overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reels { display: flex; gap: 20px; width: max-content; animation: reelscroll 55s linear infinite; }
.reels-wrap:hover .reels { animation-play-state: paused; }
@keyframes reelscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reel { flex: 0 0 auto; width: clamp(190px, 21vw, 244px); aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; position: relative; box-shadow: var(--sh-md); border: 1px solid var(--line-soft); background: var(--beige); }
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.reel:hover img { transform: scale(1.06); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,55,0.04) 42%, rgba(11,20,55,0.78)); }
.reel__tag { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.35); }
.reel__tag svg { width: 17px; height: 17px; }
.reel__cap { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; color: #fff; }
.reel__cap .stars { color: var(--gold); }
.reel__cap .stars svg { width: 13px; height: 13px; }
.reel__cap b { font-family: var(--font-head); font-weight: 600; display: block; font-size: 0.92rem; margin-top: 4px; }
.reel__cap small { color: #d7ddf2; font-size: 0.76rem; }
@media (max-width: 600px) { .reel { width: 168px; } }
@media (max-width: 760px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 100%; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item.wide { grid-column: span 2; }
  .hero { min-height: 88vh; }
  .search-form { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item.wide { grid-column: span 1; }
  .hero__trust { gap: 16px; }
  .brand__tag { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1 !important; transform: none !important; }
}

/* Print */
@media print {
  .site-header, .footer, .floaties, .mobile-bar, .scroll-progress, .to-top { display: none !important; }
  body { color: #000; }
}
