/* =========================================================
   SAFFERGURU — BASE STYLESHEET (pure CSS, no framework)
   Extracted from the inline <style> block in index.html.

   1. Tokens (Root Variables)   9. Map
   2. Base / Reset             10. Gallery / Stats
   3. Buttons                  11. Testimonials
   4. Header / Navigation      12. Blog
   5. Hero                     13. FAQ
   6. Destinations (Cards)     14. Newsletter + Footer
   7. Why choose (Cards)       15. Animations
   8. Packages (Cards)         16. Responsive
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  --primary: #5b3df5;
  --secondary: #7b61ff;
  --accent: #8b5cf6;
  --dark: #071b34;
  --ink: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --line: #e9eef5;
  --star: #fbbf24;
  --wa: #25d366;

  --grad: linear-gradient(135deg, #4f2de2 0%, #6c4dff 100%);
  /* --grad-1: linear-gradient(135deg, #5a3cde 0%, #5a3cde 100%); */

  --container: 1320px;
  --header-h: 74px;
  /* Bottom edge of the hanging logo panel (.logo is absolutely positioned
     from the viewport top, so it always overhangs below --header-h — this
     tracks its actual height per breakpoint so content below the header
     can clear it without guessing). Keep in sync with `.logo { height }`. */
  --logo-h: 125px;
  --pad: clamp(18px, 5vw, 50px);
  /* unified vertical rhythm for homepage sections — desktop/tablet/mobile
     tiers are set in the responsive breakpoints below, this is the desktop
     baseline (~80px per the spacing scale: 8/12/16/24/32/40/48/64/80) */
  --section: 80px;

  --r-card: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;

  --sh-soft: 0 10px 40px -12px rgba(7, 27, 52, 0.1);
  --sh-card: 0 18px 50px -20px rgba(7, 27, 52, 0.18);
  --sh-lift: 0 30px 70px -25px rgba(91, 61, 245, 0.35);
  --sh-glass: 0 25px 80px -20px rgba(7, 27, 52, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --f-display: "Clash Display", "Sora", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --f-script: "Caveat", cursive;
}

/* ---------- 2. BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* Fixed .site-header sits on top of the page (see HEADER section below), so any
   in-page anchor jump (#attractions, #packages, #custom-plan, etc.) needs this
   offset — otherwise the target section scrolls flush under the header and its
   heading gets visually clipped by it. */
[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "DM Serif Display", serif;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
}
p {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid rgba(91, 61, 245, 0.55);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.container-tiktoksection {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section {
  padding-block: var(--section);
}
.section--flush {
  padding-bottom: var(--section);
}
.grad-text {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: 0;
}

/* section headings */
.sec-head {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.sec-head-gallery {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.sec-title {
  font-size: clamp(28px, 5vw, 40px);
  color: var(--dark);
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.15;
}
.sec-sub {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(30, 41, 59, 0.6);
  max-width: 420px;
  margin-inline: auto;
}
.sec-action {
  position: absolute;
  right: 0;
  top: 22px;
}

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  border-radius: var(--r-pill);
  padding: 14px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn i,
.btn svg {
  width: 16px;
  height: 16px;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(91, 61, 245, 0.75);
}
.btn--primary:hover {
  box-shadow: 0 20px 44px -14px rgba(91, 61, 245, 0.85);
}
.btn--dark {
  background: var(--dark);
  color: #fff;
}
.btn--dark:hover {
  background: #0c2848;
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
}
.btn--ghost:hover {
  border-color: #cdbdff;
  color: var(--primary);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.22);
}
.btn--sm {
  padding: clamp(8px, 1.1vh, 10px) clamp(14px, 1.5vw, 20px);
  font-size: clamp(12px, 0.95vw, 13px);
}
.btn--block {
  width: 100%;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.45);
  animation: rip 0.6s linear;
  pointer-events: none;
}
@keyframes rip {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- 4. HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
}
.header-shell {
  position: relative;
  height: 74px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
/* shared container — reuses the same --container / --pad tokens as the
   rest of the site (see .container) so the logo and CTA line up with the
   Hero heading/content edges below, at every breakpoint, with no extra math */
.header-container {
  position: relative;
  width: 100%;
  max-width: var(--container);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.header-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

/* Layer 2 — hanging purple logo panel, overlaps the white navbar */
.logo {
  position: absolute;
  top: 0;
  left: var(--pad);
  width: 185px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6d4cff, #4a2fc4);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 15px 30px rgba(74, 47, 196, 0.35);
  z-index: 1000;
}
.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* absolutely centered on the header, independent of the logo/CTA widths,
   so the gap between nav items and the visual center stay identical on
   every screen size instead of drifting with however wide those are */
.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 42px);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}
.nav-link {
  position: relative;
  padding-block: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 500;
  color: #222;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-link svg {
  width: 15px;
  height: 15px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 3px;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}
.nav-link.is-active {
  color: var(--primary);
}

.has-mega {
  position: relative;
}
.mega {
  position: absolute;
  left: 50%;
  top: 46px;
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition: 0.32s var(--ease);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 20px;
  z-index: 50;
  max-width: calc(100vw - 40px);
  overflow: auto;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega--wide {
  width: 720px;
}
.mega--narrow {
  width: 280px;
  padding: 12px;
}
.mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mega-head p {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.mega-head a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.mega-item:hover {
  border-color: rgba(91, 61, 245, 0.3);
  background: var(--light);
}
.mega-item img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.mega-item b {
  display: block;
  font-size: 13px;
  color: var(--dark);
}
.mega-item span {
  display: block;
  font-size: 11px;
  color: rgba(30, 41, 59, 0.55);
}
.mega-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: 0.25s;
}
.mega-link:hover {
  background: var(--light);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  flex-shrink: 0;
}
.wa-btn {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.9);
  transition: transform 0.3s var(--ease);
}
.wa-btn:hover {
  transform: scale(1.1);
}
.wa-btn svg {
  width: 18px;
  height: 18px;
}
.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b3df5, #7a5cff);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 30px -12px rgba(91, 61, 245, 0.75);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
}
.hdr-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(91, 61, 245, 0.85);
}
.hdr-cta i,
.hdr-cta svg {
  width: 16px;
  height: 16px;
}
.burger svg {
  width: 18px;
  height: 18px;
}
.burger {
  display: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  place-items: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}
.burger:hover {
  border-color: #cdbdff;
  color: var(--primary);
  transform: translateY(-1px);
}

/* off-canvas backdrop for the mobile/tablet drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 27, 52, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
  z-index: 1001;
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* off-canvas drawer — shown (display:flex) only ≤1023px, see responsive section */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(380px, 80vw);
  background: #fff;
  box-shadow: -24px 0 60px -20px rgba(7, 27, 52, 0.35);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 1002;
  overflow-y: auto;
  padding: 24px 24px 32px;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mobile-nav-head span {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.mobile-nav-close {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.mobile-nav-close:hover {
  background: var(--light);
  color: var(--primary);
  transform: rotate(90deg);
}
.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dark);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--light);
  color: var(--primary);
}
.mobile-nav a.is-active {
  color: var(--primary);
  background: var(--light);
}
.mobile-nav .hdr-cta {
  margin-top: 16px;
  justify-content: center;
  min-height: 48px;
  color: #fff;
}

/* body scroll lock while the mobile drawer is open (class toggled by Header.jsx) */
body.menu-open {
  overflow: hidden;
}

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* reserve space for the fixed header so flex-centering below balances
     against the actually-visible area, not the raw viewport */
  padding-top: var(--header-h);
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 27, 52, 0.93) 0%,
    rgba(7, 27, 52, 0.74) 26%,
    rgba(7, 27, 52, 0.28) 52%,
    rgba(7, 27, 52, 0.18) 72%,
    rgba(7, 27, 52, 0.5) 100%
  );
}
.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 52, 0.55) 0%,
    rgba(7, 27, 52, 0) 34%,
    rgba(7, 27, 52, 0) 62%,
    rgba(7, 27, 52, 0.45) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  /* gap: clamp(20px, 3vw, 48px); */
  align-items: center;
  width: 100%;
}
.hero-copy {
  color: #fff;
}

/* Give the home hero copy a little more room to breathe without changing
   the shared hero layout used by the inner pages. */
.hero--home .hero-title {
  margin-top: clamp(14px, 2.2vh, 24px);
}
.hero--home .hero-rule {
  margin-top: clamp(14px, 2.2vh, 24px);
}
.hero--home .hero-text {
  margin-top: clamp(16px, 2.5vh, 26px);
}
.hero--home .trust-list {
  margin-top: clamp(20px, 3.4vh, 38px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(5px, 0.8vh, 7px) clamp(12px, 1.2vw, 16px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 27, 52, 0.38);
  backdrop-filter: blur(8px);
  font-size: clamp(10.5px, 0.9vw, 12px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag i, .tag svg {
  width: clamp(13px, 1.2vw, 15px);
  height: clamp(13px, 1.2vw, 15px);
  color: #a78bfa;
}

.hero-title {
  font-family: "Outfit", var(--f-body);
  font-weight: 800;
  font-size: clamp(30px, 8vw, 62px);
  line-height: 1.08;
  /* margin-top: clamp(12px, 2vh, 22px); */
  text-shadow: 0 6px 30px rgba(7, 27, 52, 0.45);
}

/* .hero-title-line1 {
  display: inline-block;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}
.hero-title-line2 {
  display: inline-block;
  margin-top: 0.08em;
  font-family: "Allura", cursive;
  font-weight: 400;
  font-size: 1.55em;
  line-height: 1;
  text-shadow: none;
} */


.hero-title-line1 {
  display: inline-block;
  font-family: "DM Serif Display", serif;
  font-weight: 200;
  font-style: normal;

  font-size: clamp(40px, 10vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-title-line2 {
  display: inline-block;
  margin-top: 0.12em;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;

  font-size: clamp(40px, 10vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.015em;

  text-shadow: none;
}

/* .hero-title span {
  color: #7c5cff;
} */

.hero-rule {
  display: block;
  height: 4px;
  width: clamp(180px, 24vw, 340px);
  max-width: 78%;
  border-radius: 4px;
  margin-top: clamp(10px, 1.8vh, 20px);
  background: linear-gradient(
    90deg,
    #7c5cff 0%,
    #a78bfa 42%,
    rgba(255, 255, 255, 0.55) 68%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero-text {
  margin-top: clamp(12px, 2vh, 22px);
  max-width: clamp(320px, 34vw, 440px);
  font-size: clamp(12.5px, 1.05vw, 15px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.4vh, 12px) clamp(16px, 2.4vw, 34px);
  margin-top: clamp(16px, 3vh, 34px);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 600;
  color: #fff;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust-list i, .trust-list svg {
  width: clamp(16px, 1.5vw, 20px);
  height: clamp(16px, 1.5vw, 20px);
  color: #f0b429;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.script-note {
  position: absolute;
  right: 5%;
  top: calc(var(--header-h) + clamp(14px, 3vh, 36px));
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  transform: rotate(-8deg);
}
.script-note p {
  font-family: var(--f-script);
  font-size: clamp(19px, 1.9vw, 29px);
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 4px 18px rgba(7, 27, 52, 0.5);
}
.script-note p span {
  padding-left: 26px;
}
.script-note svg {
  width: clamp(86px, 9vw, 130px);
  height: clamp(42px, 4.6vw, 64px);
  margin: 2px auto 0;
  display: block;
  color: rgba(255, 255, 255, 0.75);
}

/* booking card */
.booking-card {
  justify-self: end;
  width: 100%;
  max-width: clamp(290px, 27vw, 360px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-card);
  padding: clamp(12px, 1.3vw, 20px);
  box-shadow: var(--sh-glass);
  margin-top: 40px;
}
.tabs {
  display: flex;
  gap: 4px;
  background: #f1f2f8;
  border-radius: var(--r-pill);
  padding: 4px;
}
.booking-card__title {
  margin: 3px 10px 0;
  color: var(--primary);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}
.tab {
  flex: 1;
  border: 0;
  background: none;
  cursor: pointer;
  padding: clamp(7px, 1vh, 10px) 10px;
  border-radius: var(--r-pill);
  font-size: clamp(10.5px, 0.92vw, 12.5px);
  font-weight: 700;
  color: rgba(30, 41, 59, 0.42);
  transition: 0.3s;
  white-space: nowrap;
}
.tab.is-active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(91, 61, 245, 0.9);
}
.booking-form {
  margin-top: clamp(12px, 1.8vh, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vh, 16px);
}
.field {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(10px, 1.3vh, 13px) clamp(12px, 1.2vw, 16px);
  background: #fff;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.field:focus-within {
  border-color: #bda8ff;
  box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.12);
}
.field > span {
  display: block;
  font-size: clamp(9.5px, 0.8vw, 11px);
  font-weight: 600;
  color: rgba(30, 41, 59, 0.45);
  margin-bottom: 2px;
}
.field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(11.5px, 1vw, 13.5px);
  font-weight: 500;
  color: rgba(30, 41, 59, 0.85);
  cursor: pointer;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  font: inherit;
  font-size: clamp(11.5px, 1vw, 13.5px);
  font-weight: 500;
  color: rgba(30, 41, 59, 0.85);
}
.custom-plan-form { gap: 7px; }
.custom-plan-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.custom-plan-row .field { min-width: 0; }
.widget-message { margin: 0; font-size: 11px; line-height: 1.4; }
.widget-message--error { color: #b42318; }
.widget-message--success { color: #067647; }
.booking-form button:disabled, .field select:disabled { cursor: wait; opacity: 0.65; }
.field-row i, .field-row svg {
  width: clamp(15px, 1.4vw, 18px);
  height: clamp(15px, 1.4vw, 18px);
  flex-shrink: 0;
  color: rgba(30, 41, 59, 0.4);
}
.dropdown-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field > .dropdown-field__label {
  display: block;
}
.field > .dropdown-field__value-row {
  /* The chevron used to sit beside the select as a separate flex item, so
     the icon's own pixels were outside the <select>'s box and a click
     there only reached it via the browser's implicit <label> delegation —
     which focuses a <select> but doesn't reliably open its native picker
     in every browser. Overlaying the chevron (pointer-events: none) on
     top of a full-width select means every click in the row, including on
     the arrow, lands directly on the <select> itself. */
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding-right: 4px;
}
.dropdown-field__value-row select {
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
  padding-right: 22px;
}
.dropdown-field__value-row .dropdown-field__chevron {
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}
.btn--rect {
  border-radius: 24px;
  margin-top: clamp(2px, 0.6vh, 6px);
  padding: clamp(10px, 1.5vh, 14px) 20px;
}
.tours-page { min-height: 100vh; background: #f8f9fc; }
.tours-hero { padding: calc(var(--header-h) + 80px) 0 70px; text-align: center; background: linear-gradient(135deg, #eef3ff, #f7f3ff); }
.tours-hero h1 { margin: 8px 0; color: var(--ink); font-size: clamp(36px, 5vw, 64px); }
.tours-hero p:last-child { color: var(--muted); }
.tours-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; color: var(--muted); }
.tours-toolbar label { display: flex; align-items: center; gap: 10px; }
.tours-toolbar select { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 10px 34px 10px 12px; color: var(--ink); }
.tours-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
/* ToursListing renders className="pkg-grid tours-grid" so it can reuse
   .pkg-card's visuals, but .pkg-grid's own carousel behavior (declared
   later in this file, same specificity) was winning the cascade and
   silently turning the tours grid into a non-wrapping horizontal scroll
   strip — the grid-template-columns overrides below never had any effect
   because display was never actually "grid". */
.pkg-grid.tours-grid {
  display: grid;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  scroll-snap-type: none;
}
.home-featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); overflow-x: auto; scrollbar-width: none; }
.home-featured-grid::-webkit-scrollbar { display: none; }
#legacy-packages { display: none !important; }
.tours-status { display: flex; min-height: 280px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--line); border-radius: var(--r-card); background: #fff; padding: 40px; text-align: center; color: var(--muted); }
.tours-status h2 { color: var(--ink); }
.tours-status--error { color: #b42318; }
.tours-status__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tours-spinner { width: 34px; height: 34px; border: 3px solid #ddd7ff; border-top-color: var(--purple); border-radius: 50%; animation: tour-spin .8s linear infinite; }
@keyframes tour-spin { to { transform: rotate(360deg); } }
.tours-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.tours-pagination button { border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 9px 18px; cursor: pointer; }
.tours-pagination button:disabled { cursor: not-allowed; opacity: .45; }
.plan-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 52, .68);
  backdrop-filter: blur(8px);
}
.plan-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(7, 27, 52, .3);
}
.plan-dialog::-webkit-scrollbar { display: none; width: 0; height: 0; }
.plan-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(7,27,52,.55);
  color: #fff;
  cursor: pointer;
}
.plan-dialog__close svg { width: 20px; }
.plan-dialog__hero { position: relative; height: 290px; overflow: hidden; border-radius: 28px 28px 0 0; }
.plan-dialog__hero > img { width: 100%; height: 100%; object-fit: cover; }
.plan-dialog__hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,52,.08), rgba(7,27,52,.9)); }
.plan-dialog__heading { position: absolute; right: 30px; bottom: 26px; left: 30px; z-index: 2; color: #fff; }
.plan-dialog__heading .badge { position: static; width: max-content; margin-bottom: 12px; }
.plan-dialog__heading h1,
.plan-dialog__heading h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.plan-dialog__heading > div { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 8px; }
.plan-dialog__heading > div span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.plan-dialog__heading svg { width: 16px; height: 16px; }
.plan-dialog__body { padding: 28px 30px 32px; }
.plan-dialog__loading { margin-bottom: 10px; color: #5b3df5; font-size: 12px; font-weight: 600; }
.plan-dialog__summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.plan-dialog__summary > div { display: flex; min-height: 88px; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; background: #fafbff; }
.plan-dialog__summary small, .plan-dialog__summary span { color: #526176; font-size: 11px; opacity: 1; }
.plan-dialog__summary strong { color: var(--dark); font-size: 19px; }
.plan-dialog__summary svg { width: 18px; height: 18px; margin-bottom: 5px; color: var(--primary); fill: none; }
.plan-dialog__section { margin-top: 22px; }
.plan-dialog__section h3 { margin-bottom: 9px; color: var(--dark); font-size: 17px; }
.plan-dialog__section p { color: #475569; font-size: 13px; line-height: 1.7; opacity: 1; }
.plan-dialog__services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.plan-dialog__services > div { display: flex; align-items: flex-start; gap: 11px; border: 1px solid var(--line); border-radius: 14px; padding: 13px; color: #475569; font-size: 12px; opacity: 1; }
.plan-dialog__services svg { width: 20px; flex: 0 0 20px; color: var(--primary); }
.plan-dialog__services span { display: flex; flex-direction: column; gap: 2px; }
.plan-dialog__services b { color: var(--dark); font-size: 13px; }
.plan-dialog__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.plan-dialog__chips span { display: inline-flex; align-items: center; gap: 5px; border-radius: 999px; padding: 7px 11px; background: #f0edff; color: var(--primary); font-size: 11px; font-weight: 600; }
.plan-dialog__chips svg { width: 13px; height: 13px; }
.plan-dialog__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.plan-dialog__section li { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; color: #475569; font-size: 12.5px; opacity: 1; }
.plan-dialog__section li svg { width: 16px; height: 16px; flex: 0 0 16px; color: #12a150; }
.plan-dialog__excluded li svg { color: #d92d20; }
.plan-dialog__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan-dialog__actions .btn { min-width: 180px; }
.plan-page { min-height: 100vh; padding: calc(var(--header-h) + 56px) 20px 80px; background: #f6f7fb; }
.plan-page__card { width: min(960px, 100%); margin: 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 25px 70px rgba(7,27,52,.12); }
.plan-page__card .plan-dialog__hero { height: 400px; }
.plan-page__card .plan-dialog__section h2 { margin-bottom: 9px; color: var(--dark); font-size: 17px; }
.plan-page { padding-top: calc(var(--logo-h) + 20px); background: linear-gradient(180deg, #f7f8ff 0%, #f6f7fb 55%); }
.plan-page__card { width: min(1040px, 100%); box-shadow: 0 28px 76px rgba(7,27,52,.13); }
.plan-page__card .plan-dialog__body { padding: 34px clamp(22px, 4vw, 48px) 38px; }
.plan-page__card .plan-dialog__summary { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 30px; }
.plan-page__card .plan-dialog__summary > div { min-height: 104px; padding: 18px 20px; background: linear-gradient(135deg, #fafbff, #f4f1ff); }
.plan-page__card .plan-dialog__summary strong { margin-top: 3px; font-size: 22px; }
.plan-page__card .plan-dialog__section { margin-top: 28px; }
.plan-page__card .plan-dialog__section h2 { font-size: 19px; }
.plan-page__card .plan-dialog__services { gap: 14px; margin-top: 26px; }
.plan-page__card .plan-dialog__services > div { min-height: 86px; align-items: center; padding: 16px; }
.plan-page__card .plan-dialog__services span { justify-content: center; }
.plan-page__card .plan-dialog__columns { gap: 32px; }
.plan-page__card .plan-dialog__actions { gap: 14px; margin-top: 34px; padding-top: 26px; }
.plan-page__card .plan-dialog__actions .btn { min-width: 190px; min-height: 48px; justify-content: center; }
@media (max-width: 600px) {
  .plan-page { padding: calc(var(--header-h) + 22px) 12px 52px; }
  .plan-page__card { border-radius: 20px; }
  .plan-page__card .plan-dialog__hero { height: 280px; }
  .plan-page__card .plan-dialog__body { padding: 24px 18px 28px; }
  .plan-page__card .plan-dialog__summary { gap: 10px; }
  .plan-page__card .plan-dialog__summary > div { min-height: 94px; padding: 14px; }
  .plan-page__card .plan-dialog__actions { flex-direction: column; }
  .plan-page__card .plan-dialog__actions .btn { width: 100%; }
}
@media (max-width: 900px) { .tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .tours-grid { grid-template-columns: 1fr; }
  .tours-toolbar { align-items: flex-start; flex-direction: column; }
  .custom-plan-row { grid-template-columns: 1fr; }
  .plan-dialog-backdrop { align-items: end; padding: 0; }
  .plan-dialog { max-height: 94vh; border-radius: 24px 24px 0 0; }
  .plan-dialog__hero { height: 235px; border-radius: 24px 24px 0 0; }
  .plan-dialog__heading { right: 20px; bottom: 20px; left: 20px; }
  .plan-dialog__body { padding: 22px 20px 28px; }
  .plan-dialog__summary { grid-template-columns: 1fr 1fr; }
  .plan-dialog__services, .plan-dialog__columns { grid-template-columns: 1fr; gap: 0; }
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(70px, 11vh, 150px);
  z-index: 4;
  color: #fff;
}

/* chips — an infinite auto-scrolling marquee. .chips-track holds two
   identical copies of the row (the 2nd is aria-hidden) side by side and
   animates as a single unit from translateX(0) to translateX(-50%); since
   both copies are the same width, -50% is exactly one copy's width, so the
   loop is seamless. Pauses on hover/focus, and respects reduced-motion. */
.chips-wrap {
  position: relative;
  z-index: 20;
  margin-top: calc(-1 * clamp(30px, 5vh, 54px));
  padding-top: clamp(10px, 1.6vh, 20px);
 
}
.chips-marquee {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  overflow: hidden;
}
.chips-track {
  display: flex;
  width: max-content;
  animation: chips-marquee 34s linear infinite;
}
.chips-marquee:hover .chips-track,
.chips-marquee:focus-within .chips-track {
  animation-play-state: paused;
}
@keyframes chips-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .chips-track {
    animation: none;
  }
  .chips-marquee {
    overflow-x: auto;
  }
}
.chips {
  display: flex;
  gap: clamp(10px, 1.4vw, 20px);
  flex-shrink: 0;
  padding: 6px 12px 12px;
}
.chip {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  flex-shrink: 0;
  padding: 8px clamp(18px, 2vw, 28px) 8px 8px;
  background: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 18px 38px -16px rgba(7, 27, 52, 0.55);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(91, 61, 245, 0.5);
}
.chip img {
  height: clamp(34px, 4.4vh, 46px);
  width: clamp(34px, 4.4vh, 46px);
  border-radius: 50%;
  object-fit: cover;
}
.chip span {
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.chip:hover span {
  color: var(--primary);
}

/* ---------- 6. DESTINATIONS ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  height: 350px;
  border-radius: 16px;
  /* border-radius: var(--r-card); */
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s ease;
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px -34px rgba(7, 27, 52, 0.42);
}
.dest-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.dest-card:hover img {
  transform: scale(1.09);
}
.dest-card-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.dest-card-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 177.78%; /* vertical (9:16) clip scaled to cover the card */
  border: 0;
  transform: translate(-50%, -50%);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 18, 0) 45%,
    rgba(7, 27, 52, 0.22) 65%,
    rgba(7, 27, 52, 0.82) 100%
  );
}
.dest-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  color: #fff;
  z-index: 2;
}
.dest-body h3 {
  font-size: 19px;
}
.meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.meta i, .meta svg {
  width: 10px;
  height: 10px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}
.rating i, .rating svg {
  width: 14px;
  height: 14px;
  color: #fff;
  fill: none;
  stroke-width: 2px;
}
.rating small {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.dest-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out, margin-top 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.dest-card:hover .dest-more {
  max-height: 24px;
  margin-top: 12px;
  opacity: 1;
}
.dest-more i, .dest-more svg {
  width: 14px;
  height: 14px;
}

/* ---------- 7. WHY CHOOSE ---------- */
#why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 60% at 46% 52%, rgba(104, 78, 255, .09), transparent 72%),
    radial-gradient(ellipse 34% 46% at 96% 24%, rgba(58, 157, 255, .065), transparent 72%);
}
#why .container {
  position: relative;
}
/* #why .sec-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 62px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--primary);
} */
#why .reveal { transition-duration: .55s; }

/* Bento-style "why choose us" grid: ghost index numerals, blob-shaped icon
   tiles that morph on hover, and an alternating tint rhythm across the
   cards. Numerals come from a CSS counter so no markup changes are needed. */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: feature;
  gap: clamp(16px, 2.2vw, 26px);
}
.feature-card {
  position: relative;
  counter-increment: feature;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 12px 28px -22px rgba(15, 23, 42, .18);
  transition:
    transform .4s var(--ease),
    box-shadow .4s ease,
    border-color .4s ease,
    background .4s ease;
  will-change: transform;
}
.feature-card:nth-child(even) {
  background: linear-gradient(165deg, #f6f4ff 0%, #fbfcff 60%);
}
.feature-card::before {
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: -0.28em;
  right: 14px;
  z-index: 0;
  font-family: "Manrope", var(--f-body);
  font-size: clamp(56px, 6vw, 78px);
  font-weight: 800;
  line-height: 1;
  color: rgba(91, 61, 245, .07);
  transition: color .4s ease, transform .4s var(--ease);
  pointer-events: none;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), #54aaff);
  opacity: 0;
  transition: opacity .4s ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.feature-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: transparent;
  box-shadow: 0 20px 36px -20px rgba(25, 18, 84, .24), 0 10px 20px -14px rgba(91, 61, 245, .18);
}
.feature-card:hover::before {
  color: rgba(91, 61, 245, .14);
  transform: translateY(-4px);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 54px;
  width: 54px;
  flex-shrink: 0;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  color: #fff;
  background: linear-gradient(135deg, #765aff, #4f9fff);
  box-shadow: 0 10px 18px -10px rgba(82, 75, 225, .55);
  transition: transform .5s var(--ease), box-shadow .4s ease, border-radius .5s var(--ease);
}
.feature-icon i, .feature-icon svg {
  width: 23px;
  height: 23px;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-6deg);
  border-radius: 63% 37% 42% 58% / 56% 59% 41% 44%;
  box-shadow: 0 14px 22px -10px rgba(82, 75, 225, .65);
}
.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-top: 22px;
}
.feature-card p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  max-width: 29ch;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(30, 41, 59, .58);
}

/* ---------- 8. PACKAGES ---------- */
.arrows {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.arrow {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
  color: rgba(30, 41, 59, 0.6);
  cursor: pointer;
  transition: 0.3s;
}
.arrow:hover {
  border-color: rgba(91, 61, 245, 0.4);
  color: var(--primary);
}
.arrow i, .arrow svg {
  width: 16px;
  height: 16px;
}
.sec-head .arrows {
  position: absolute;
  right: 0;
  top: 18px;
}

.pkg-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* horizontal scroll chalay */
  overflow-y: hidden; /* vertical scroll kabhi na bane, sirf clip ho */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none; /* Firefox ke liye */
  -ms-overflow-style: none; /* Internet Explorer aur Edge ke liye */
}

/* Chrome, Safari, aur Opera ke liye scrollbar hide karna */
.pkg-grid::-webkit-scrollbar {
  display: none;
}
.pkg-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  /* background: #fff; */
  /* border: 1px solid var(--line); */
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s ease;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px -34px rgba(7, 27, 52, 0.42);
}
.pkg-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.pkg-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.pkg-card:hover .pkg-media img {
  transform: scale(1.09);
}
.pkg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 52, 0) 45%,
    rgba(7, 27, 52, 0.85) 100%
  );
}
.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--sh-soft);
}
.badge i,
.badge svg {
  width: 14px;
  height: 14px;
}
.duration {
  position: absolute;
  left: 16px;
  bottom: 56px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 27, 52, 0.45);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
}
.duration i,
.duration svg {
  width: 14px;
  height: 14px;
}
.pkg-name {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: clamp(16px, 4vw, 21px);
}
.pkg-body {
  padding: 20px;
}
.pkg-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(30, 41, 59, 0.6);
}
.pkg-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pkg-meta i,
.pkg-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.pkg-meta .divider {
  height: 12px;
  width: 1px;
  background: var(--line);
}
.pkg-meta__divider {
  height: 12px;
  width: 1px;
  margin-right: 6px;
  background: var(--line);
}
.pkg-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 16px;
}
.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.pkg-rating i,
.pkg-rating svg {
  width: 16px;
  height: 16px;
  color: var(--star);
  fill: var(--star);
}
.pkg-rating small {
  color: rgba(30, 41, 59, 0.45);
  font-weight: 500;
}
.pkg-price {
  text-align: right;
}
.pkg-price small {
  display: block;
  font-size: 11px;
  color: rgba(30, 41, 59, 0.45);
}
.pkg-price b {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.pkg-body .btn {
  margin-top: 16px;
}

/* ---------- 9. MAP ---------- */
.map-panel {
  position: relative;
  border-radius: var(--r-card);
  border: 1px solid #e4dbff;
  background: linear-gradient(
    135deg,
    #f3eeff 0%,
    #efeaff 55%,
    #f7f5ff 100%
  );
  padding: 50px 48px;
  min-height: 350px;
  box-shadow: var(--sh-soft);
}
.map-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.map-art {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.92;
  border-radius: inherit;
}
.map-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 40px;
}
.map-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--dark);
  margin-top: 12px;
  line-height: 1.15;
  font-weight: 400;
}
.map-copy p {
  margin-top: 16px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(30, 41, 59, 0.6);
}
.mountain-man-art {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 57%;
  max-width: 90%;
  z-index: 4;
  pointer-events: none;
  object-fit: contain;
  object-position: bottom right;
  border-bottom-right-radius: inherit;
}
.map-copy-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.map-copy-actions .btn {
  margin-top: 0;
}
.map-copy-actions__mobile-only {
  display: none;
}
.map-canvas {
  position: relative;
  min-height: 280px;
}
.location-pin {
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 5;
  cursor: pointer;
}
.location-pin:hover, .location-pin.active {
  z-index: 10;
}
.location-pin:hover .map-marker, .location-pin.active .map-marker {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -100%) translateY(-15px) scale(1);
}
     

.map-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%) translateY(-5px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px 6px 6px; /* चारों तरफ balanced padding */
  box-shadow: var(--sh-card);
  white-space: nowrap;
  pointer-events: none;
  
  /* Agar sabhi markers ki width bilkul same chahte hain toh min-width laga sakte hain */
  /* min-width: 120px; */ 
}

.map-marker img {
  height: 32px;
  width: 32px;
  min-width: 32px; /* Image shrink na ho */
  border-radius: 50%;
  object-fit: cover;
}

.map-marker span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  
  /* Agar text chhota/bada ho aur space barabar rakhni ho */
  /* flex-grow: 1; */
  /* text-align: center; */
}
.dot {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: var(--primary);
}
.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(91, 61, 245, 0.6);
  animation: ping 2s ease-out infinite;
}
.location-pin.active .dot {
  box-shadow: 0 0 0 4px rgba(91, 61, 245, 0.18);
}
.location-pin.active .dot::after {
  animation: ping-strong 2.2s ease-out infinite;
}
@keyframes ping-strong {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dot::after,
  .location-pin.active .dot::after {
    animation: none;
  }
  .map-marker {
    transition: opacity 0.2s linear;
  }
  .location-pin:hover .map-marker,
  .location-pin.active .map-marker {
    transform: translate(-50%, -100%) translateY(-15px) scale(1);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes ping {
  0% {
    transform: scale(0.9);
    opacity: 0.75;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
.route {
  stroke-dasharray: 8 10;
  animation: dashmove 18s linear infinite;
}
@keyframes dashmove {
  to {
    stroke-dashoffset: -600;
  }
}

/* ---------- 10. HORIZONTAL CAROUSEL GALLERY ---------- */
.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 40px; */
  touch-action: pan-y;
  cursor: grab;
}
.carousel-container:active {
  cursor: grabbing;
}
.carousel-track {
  position: absolute;
  top: 50%;
  left: 50%;
  --carousel-gap: 24px;
  width: 265px;
  height: 398px;
  transform: translate3d(-50%, -50%, 0);
}
.carousel-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: opacity 180ms linear, box-shadow 180ms linear;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.carousel-card:hover {
  box-shadow: 0 30px 60px rgba(91, 61, 245, 0.4);
}
/* YouTube Shorts carousel */
.youtube-card {
  background: transparent;
  border: none;
}
.youtube-poster,
.youtube-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.youtube-poster {
  position: relative;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: #24232b center / cover no-repeat;
}
.youtube-poster img,
.youtube-poster video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.youtube-poster__shade {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
}
.youtube-poster__play { position: absolute; top: 50%; left: 50%; display: grid; width: 54px; height: 54px; place-items: center; padding-left: 3px; border-radius: 50%; background: rgba(255,255,255,.92); color: #5b3df5; transform: translate(-50%, -50%); }
.youtube-poster__title { position: absolute; right: 16px; bottom: 17px; left: 16px; font-size: 14px; font-weight: 700; line-height: 1.35; text-align: left; }
.reels-stack {
  display: none;
}
.reels-stack__card.youtube-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Mobile-only replacement for the desktop pin map (#map .map-image-wrap is
   display:none below 560px — see the 560px query). One location fills the
   viewport at a time; a swipe/scroll cycles to the next, same pinned
   discrete-step mechanic as .reels-stack. */
.location-map-mobile {
  display: none;
}
.location-map-mobile__viewport {
  position: relative;
  width: 100%;
  height: clamp(320px, 48svh, 420px);
  overflow: hidden;
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
}
.location-map-mobile__viewport--loading {
  background: #eef1f6;
}
.location-map-card {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.location-map-card__leaflet {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #eef1f6;
  /* Leaflet's own panes (marker/tooltip/popup) carry z-index values up to
     700. Without an explicit z-index here, this container never became a
     stacking context of its own, so those panes escaped it and painted
     over .location-map-card__badge (z-index: 2) — the badge was rendering
     the whole time, just fully hidden underneath the map. Giving this
     element its own z-index traps Leaflet's internal stacking inside it. */
}
/* Small floating glass chip pinned to the map's bottom-left corner —
   photo + name. Semi-transparent + blurred (not a solid white box) so the
   map stays visible behind it; this component only ever renders inside
   the ≤560px mobile breakpoint (see .location-map-mobile below), so there's
   no separate desktop size to maintain. */
.location-map-card__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--r-pill);
  padding: 6px 12px 6px 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
  white-space: nowrap;
}
.location-map-card__badge img {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  /* These thumbnails are hotlinked from Unsplash/Google — while the
     request is in flight (or if it 404s before the fallback swaps in)
     the <img> box was showing through as an empty/transparent circle,
     which read as "faint". A solid backdrop means it always looks like
     a proper filled icon, load or no load. */
  background: #ddd6ff;
}
.gallery-cta {
  display: flex;
  justify-content: center;
  /* margin-top: 48px; */
  position: relative;
  z-index: 10;
}


.stats {
  background: var(--grad);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--sh-lift);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
}
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-icon {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.stat-icon i, .stat-icon svg {
  width: 20px;
  height: 20px;
}
.counter {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.stat span small {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 11. TESTIMONIALS ---------- */
/* reserves a side gutter (desktop only) so the prev/next arrows sit
   clear of the card row instead of overlapping review text */
.rev-carousel {
  position: relative;
  padding-inline: 52px;
}
.rev-carousel .arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}
.rev-carousel .arrow--prev {
  left: 0;
}
.rev-carousel .arrow--next {
  right: 0;
}
.rev-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 4px 24px;
  scrollbar-width: none;
}
.rev-grid::-webkit-scrollbar {
  display: none;
}
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--sh-soft);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s ease;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px -34px rgba(7, 27, 52, 0.3);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--star);
}
.stars i, .stars svg {
  width: 16px;
  height: 16px;
  fill: var(--star);
}
.review-card p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(30, 41, 59, 0.7);
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.reviewer img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewer b {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
}
.reviewer small {
  display: block;
  font-size: 11.5px;
  color: rgba(30, 41, 59, 0.5);
}

/* ---------- 12. BLOG ---------- */
.blog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.blog-head .sec-title {
  text-align: left;
}
.blog-head .sec-sub {
  margin: 8px 0 0;
  text-align: left;
}
.blog-head .btn {
  border-radius: 999px;
  border-color: rgba(91, 61, 245, .2);
  box-shadow: 0 10px 24px -20px rgba(30, 22, 101, .45);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.blog-head .btn i { transition: transform .35s var(--ease); }
.blog-head .btn:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 61, 245, .48);
  box-shadow: 0 16px 30px -20px rgba(57, 43, 170, .42);
}
.blog-head .btn:hover i { transform: translateX(3px); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  position: relative;
  height: 204px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 42px -30px rgba(15, 23, 42, .38);
  transition:
    transform .5s var(--ease),
    box-shadow .5s ease;
}
.blog-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 32px 58px -28px rgba(15, 23, 42, .46);
}
.blog-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
.blog-card:hover img {
  transform: scale(1.06);
}
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 52, 0.02) 15%,
    rgba(7, 27, 52, 0.26) 46%,
    rgba(7, 27, 52, 0.9) 100%
  );
}
.blog-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  padding-right: 58px;
  color: #fff;
}
.cat {
  display: inline-flex;
  border-radius: var(--r-pill);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--primary);
  transition: box-shadow .4s ease, transform .4s var(--ease);
}
.cat--accent {
  background: var(--accent);
}
.cat--secondary {
  background: var(--secondary);
}
.blog-body h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.3;
}
.blog-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}
.blog-info .dot-sep {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.blog-arrow {
  position: absolute;
  right: 22px;
  bottom: 23px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: #fff;
  transition: transform .4s var(--ease), background .4s ease;
}
.blog-arrow i, .blog-arrow svg { width: 14px; height: 14px; }
.blog-card:hover .cat {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(106, 75, 255, .9);
}
.blog-card:hover .blog-arrow {
  transform: translateX(4px);
  background: rgba(255,255,255,.13);
}
.blog-card > a.stretch {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ---------- 13. FAQ ---------- */
#faq {
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -180px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 77, 246, .13), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.faq-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(91, 61, 245, .14);
  border-radius: 999px;
  background: rgba(91, 61, 245, .055);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.faq-title {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: bold;
}
.faq-intro {
  max-width: 540px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(30, 41, 59, .62);
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid #e7e9f0;
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 32px -30px rgba(15, 23, 42, .42);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.faq-item:hover {
  transform: translate3d(0, -2px, 0);
  border-color: #d4d7e3;
}
.faq-item.is-open {
  border-color: rgba(91, 61, 245, .6);
  box-shadow: 0 18px 38px -27px rgba(91, 61, 245, .34), 0 0 0 3px rgba(91, 61, 245, .055);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font: 600 15px/1.4 var(--f-body);
  text-align: left;
  cursor: pointer;
}
.faq-question i, .faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform .35s var(--ease);
}
.faq-item.is-open .faq-question i,
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  margin: 0;
  padding: 0 24px 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(30, 41, 59, .62);
  opacity: 0;
  transition: opacity .25s ease, padding .4s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 23px; opacity: 1; }
.faq-visual {
  position: relative;
  min-height: 610px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 70px -38px rgba(13, 25, 54, .48);
}
#faq .faq-visual.reveal { transform: translate3d(34px, 0, 0); }
#faq .faq-visual.reveal.is-in { transform: none; }
.faq-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.faq-visual:hover img { transform: scale(1.045); }
.faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 16, 36, .6) 100%);
}
.faq-trust,
.faq-float {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.16);
  box-shadow: 0 16px 32px -22px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.faq-trust {
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 16px 18px;
  border-radius: 18px;
}
.faq-trust strong { display: block; color: #ffc84a; font-size: 16px; letter-spacing: .08em; }
.faq-trust span { display: block; margin-top: 4px; font-size: 13px; font-weight: 700; }
.faq-float {
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  animation: faq-badge-float 5s ease-in-out infinite;
}
.faq-float--guide { top: 24px; right: 20px; }
.faq-float--destinations { top: 108px; left: 20px; animation-delay: -2.4s; }
@keyframes faq-badge-float { 50% { transform: translate3d(0, -6px, 0); } }

/* ---------- 14. NEWSLETTER + FOOTER ---------- */
.site-footer {
  position: relative;
  /* Same gradient as the header's logo panel (.logo, base.css:341) — kept
     as a literal match rather than var(--grad) so header and footer read
     as the same purple, even if --grad is retuned later. */
  
     background: #5031dd;
  color: #fff;
  padding-top: 90px;
}
.newsletter-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  z-index: 10;
}
.newsletter {
  background: var(--grad);
  border-radius: var(--r-card);
  box-shadow: var(--sh-lift);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.news-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-icon {
  display: grid;
  place-items: center;
  height: 48px;
  width: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.newsletter h2 {
  font-size: 22px;
}
.newsletter p {
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
}
.news-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--sh-soft);
}
.news-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding-inline: 16px;
  font-size: 13px;
  color: var(--ink);
}
.news-form input::placeholder {
  color: rgba(30, 41, 59, 0.4);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.2fr;
  gap: 24px;
  /* padding-top: 56px; */
}
.foot-logo {
  display: inline-block;
}
.foot-logo img {
  height: 74px;
  width: auto;
}
.foot-about {
  margin-top: 16px;
  max-width: 260px;
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.socials a:hover {
  background: #fff;
  color: var(--primary);
}
.socials i,
.socials svg {
  width: 16px;
  height: 16px;
}
.foot-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-col-icon {
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
}
.foot-col-icon i,
.foot-col-icon svg {
  width: 15px;
  height: 15px;
}
.foot-col h3 {
  margin: 0;
  font-size: 14px;
}
/* Quick Links / Top Destinations collapse on narrow phones. Driven by
   React state (data-open) rather than native <details> — <details>'s
   closed content is display:none, which can't be transitioned, so the
   open/close always snapped instantly. The panel below animates via the
   grid-template-rows 0fr/1fr trick, which *can* transition smoothly since
   the content stays rendered (just clipped) the whole time. Above 561px
   the toggle is disabled and the panel forced open, so desktop/tablet
   look like a plain always-expanded list. */
.foot-accordion-toggle {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.foot-accordion-chevron {
  margin-left: auto;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}
.foot-accordion[data-open="true"] .foot-accordion-chevron {
  transform: rotate(180deg);
}
.foot-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.foot-accordion[data-open="true"] .foot-accordion-panel {
  grid-template-rows: 1fr;
}
.foot-accordion-panel > ul {
  overflow: hidden;
  min-height: 0;
}
@media (min-width: 561px) {
  .foot-accordion-toggle {
    cursor: default;
    pointer-events: none;
  }
  .foot-accordion-chevron {
    display: none;
  }
  .foot-accordion-panel {
    grid-template-rows: 1fr !important;
  }
}
.foot-col ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.foot-col ul a:hover {
  color: #fff;
}
.foot-col li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-icon-box {
  display: grid;
  place-items: center;
  height: 34px;
  width: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
}
.foot-icon-box i,
.foot-icon-box svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.foot-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.foot-item-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.foot-item-text a,
.foot-item-text > div:last-child {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.ig-grid a {
  overflow: hidden;
  border-radius: 10px;
}
.ig-grid img {
  height: 52px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ig-grid a:hover img {
  transform: scale(1.12);
}
.foot-newsletter {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
}
.foot-newsletter h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.foot-newsletter p {
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.foot-newsletter-form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 4px 4px 12px;
}
.foot-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  color: #fff;
}
.foot-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.foot-newsletter-form button {
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.foot-newsletter-form button:hover {
  opacity: 0.85;
}
.foot-newsletter-form button i,
.foot-newsletter-form button svg {
  width: 14px;
  height: 14px;
}
.foot-bottom {
  margin-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.foot-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.foot-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-trust i,
.foot-trust svg {
  width: 15px;
  height: 15px;
  color: #fff;
}
.foot-bottom span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.foot-bottom i, .foot-bottom svg {
  width: 14px;
  height: 14px;
  color: #fb7185;
  fill: #fb7185;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  place-items: center;
  height: clamp(46px, 5.2vh, 56px);
  width: clamp(46px, 5.2vh, 56px);
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.9);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- 15. ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--scale {
  opacity: 0;
  transform: scale(0.94);
}
.reveal--scale.is-in {
  opacity: 1;
  transform: none;
  /* margin-right: 40px; */
}
[data-delay="1"] {
  transition-delay: 0.08s;
}
[data-delay="2"] {
  transition-delay: 0.16s;
}
[data-delay="3"] {
  transition-delay: 0.24s;
}
[data-delay="4"] {
  transition-delay: 0.32s;
}
[data-delay="5"] {
  transition-delay: 0.4s;
}

@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--scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .carousel-track {
    width: 250px;
    height: 375px;
  }
}
@media (max-width: 1024px) {
  :root {
    /* tablet tier of the section-spacing scale */
    --section: 64px;
    --logo-h: 108px;
  }
  /* tablet — shrink the hanging logo panel (nav switches to the hamburger drawer at ≤1023px, see below) */
  .logo {
    width: 200px;
    height: 108px;
  }
  .logo img {
    height: 56px;
  }
  .hero {
    height: auto;
    max-height: none;
    min-height: 100svh;
    /* stacked layout below gets its top offset from .hero-inner's own
       padding-block (clears the hanging logo panel instead) */
    padding-top: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vh, 32px);
    padding-block: calc(var(--logo-h) + 24px) clamp(90px, 13vh, 150px);
  }
  .booking-card {
    justify-self: start;
    max-width: 420px;
  }
  .hero-text {
    max-width: 520px;
  }
  .script-note {
    display: none;
  }
  .sec-action,
  .sec-head .arrows {
    position: static;
    margin-top: 24px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }
  .feature-card,
  .feature-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }
  .pkg-grid,
  .rev-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scroll-snap-type: x mandatory;
    /* padding: 16px 4px 24px; */
    scrollbar-width: none;
  }
  /* .pkg-grid's own overflow-y: hidden above clips the card's box-shadow
     top/bottom since the flex row's box hugs the card height exactly —
     let the shadow bleed through on the featured-tours carousel. */
  .pkg-grid {
    overflow-y: visible;
    padding-block: 4px 16px;
  }
  /* .rev-grid becomes a swipeable single-row carousel at this width with
     no safe gutter left for the side arrows, so touch-swipe takes over */
  .rev-carousel {
    padding-inline: 0;
  }
  .rev-carousel .arrow {
    display: none;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-visual { min-height: 500px; }
  .pkg-grid::-webkit-scrollbar,
  .rev-grid::-webkit-scrollbar {
    display: none;
  }
  .pkg-card,
  .review-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
  }
  .map-inner {
    grid-template-columns: 1fr;
  }
  .map-art {
    opacity: 0.5;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 768px) {
  :root {
    /* mobile tier of the section-spacing scale */
    --section: 48px;
  }
  /* Form fields site-wide inherit body's 15px text. iOS Safari auto-zooms
     the viewport on focus for any input under 16px — bump just the touch
     breakpoint so every form on the site (contact, booking, newsletter,
     search) stays put when a field is tapped. */
  input,
  select,
  textarea {
    /* !important: dozens of page-specific input classes (.cf-input,
       .faq-help-form input, .luxury-booking select, etc.) each pin their
       own smaller font-size — overriding every one individually isn't
       maintainable, and none of them have an intentional reason to be
       under 16px on a touch device. */
    font-size: 16px !important;
  }
  .map-panel {
    padding: 40px 24px;
  }
  #map .map-copy h2 {
    font-size: 25px;
  }
  .map-copy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .map-copy-actions .btn {
    min-width: 0;
    padding: 11px 4px;
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
    text-align: center;
  }
  .map-copy-actions .btn i,
  .map-copy-actions .btn svg {
    width: 13px;
    height: 13px;
  }
  .map-copy-actions__mobile-only {
    display: inline-flex;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .stat:nth-child(3) {
    border-left: 0;
  }
  .newsletter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px;
  }
  .news-copy {
    flex-direction: column;
    text-align: center;
  }
  .news-form {
    max-width: none;
  }
  .chips {
    justify-content: flex-start;
  }
  .chips-wrap {
    margin-top: -52px;
  }
  .hero-title {
    text-shadow: 0 4px 20px rgba(7, 27, 52, 0.5);
  }
  .carousel-track {
    width: 265px;
    height: 398px;
  }
}
@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  /* Home hero's gradients were tuned for the desktop split (text on the
     left needs contrast, right side stays bright to show the photo) — on
     mobile the text runs the full width, so that bright middle band sits
     right behind it. Wash the whole photo with a light, even black tint
     on top, mobile only. */
  .hero--home .hero-overlay2 {
    background: linear-gradient(
      180deg,
      rgba(7, 27, 52, 0.72) 0%,
      rgba(7, 27, 52, 0.46) 34%,
      rgba(7, 27, 52, 0.46) 62%,
      rgba(7, 27, 52, 0.65) 100%
    );
  }
  #packages .eyebrow {
    margin-bottom: 6px;
  }
  #packages .sec-title {
    font-size: 30px;
  }
  #packages .sec-sub {
    margin-top: 4px;
    padding-inline: 18px;
  }
  #why .sec-sub {
    
    padding: 0 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Contact Us is the 4th column in source order (kept there so it reads
     4th for screen readers/tab order same as desktop) but should appear
     right after the logo/about block visually on a phone — reorder with
     `order` instead of moving it in the DOM. */
  .foot-grid > *:nth-child(1) {
    order: 1;
  }
  .foot-grid > *:nth-child(4) {
    order: 2;
  }
  .foot-grid > *:nth-child(2) {
    order: 3;
  }
  .foot-grid > *:nth-child(3) {
    order: 4;
  }
  .foot-grid > *:nth-child(5) {
    order: 5;
  }
  .foot-accordion ul {
    margin-top: 14px;
  }
  #map .map-image-wrap,
  #map .mountain-man-art,
  #map .map-canvas {
    display: none;
  }
  #map .map-panel {
    min-height: 0;
  }
  #map .map-inner {
    display: block;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Compact horizontal list on mobile instead of tall stacked squares:
     icon sits beside the text, ghost numeral tucked out of the way.
     Scoped to .why-grid specifically — .feature-card is also reused
     by other pages (e.g. the Contact info cards) that should keep the
     normal stacked/column layout. */
  .why-grid .feature-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 18px;
  }
  .why-grid .feature-card::before {
    font-size: 40px;
    top: 6px;
    right: 10px;
  }
  .why-grid .feature-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 44px;
    width: 44px;
  }
  .why-grid .feature-icon i, .why-grid .feature-icon svg {
    width: 19px;
    height: 19px;
  }
  .why-grid .feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    font-size: 15.5px;
    padding-right: 34px;
  }
  .why-grid .feature-card p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    max-width: none;
    padding-right: 34px;
  }
  .dest-grid,
  .gallery,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card { height: 250px; }
  .faq-question { padding: 19px 20px; font-size: 14px; }
  .faq-answer p { padding-inline: 20px; }
  .faq-item.is-open .faq-answer p { padding-bottom: 20px; }
  .faq-visual { min-height: 420px; border-radius: 24px; }
  .faq-float--destinations { top: 86px; }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  #stats .stats {
    padding: 14px;
    border-radius: 22px;
  }
  #stats .stat {
    min-width: 0;
    min-height: 132px;
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
  }
  #stats .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  #stats .counter {
    font-size: 26px;
  }
  #stats .stat span small {
    margin-top: 5px;
    font-size: 10.5px;
    line-height: 1.35;
  }
  .carousel-track {
    --carousel-gap: 22px;
    width: calc(100vw - 36px);
    height: min(72vh, calc((100vw - 36px) * 1.5));
  }
  #gallery .carousel-container {
    display: none;
  }
  #gallery .carousel-card {
    border-radius: 22px;
  }
  .reels-stack {
    display: block;
    width: 100%;
  }
  .location-map-mobile {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .reels-stack__viewport {
    position: relative;
    width: 100%;
    height: clamp(470px, 64svh, 550px);
    overflow: hidden;
    border-radius: var(--r-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  .stat + .stat {
    border-left: 0;
  }
  .foot-about {
    max-width: none;
  }
  .foot-col ul {
    margin-top: 12px;
    gap: 8px;
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ig-grid img {
    height: 92px;
  }
  .foot-bottom {
    margin-top: 32px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .foot-trust {
    justify-content: center;
  }
  .hero-inner {
    padding-block: calc(var(--logo-h) + 40px) clamp(66px, 10vh, 110px);
    gap: 18px;
  }
  .hero--home .hero-title {
    margin-top: 14px;
  }
  .hero--home .hero-title span {
    color: #fff;
  }
  .hero--home .tag {
    font-size: 13.5px;
  }
  .hero--home .hero-title-line1,
  .hero--home .hero-title-line2 {
    font-size: 44px;
  }
  .hero--home .hero-rule {
    margin-top: 14px;
  }
  .hero--home .hero-text {
    margin-top: 14px;
    font-size: 15px;
  }
  .hero--home .trust-list {
    margin-top: 18px;
    font-size: 13px;
  }
  #destinations .dest-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: auto;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    /* proximity, not mandatory — mandatory snap fights a touch that's even
       slightly diagonal, which is what read as the section "trapping"
       vertical page scroll. */
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    /* Let the browser natively route both axes: horizontal drag scrolls
       this row (it's the nearest x-scrollable ancestor), vertical drag has
       nothing to scroll here so it passes straight through to the page. */
    touch-action: pan-x pan-y;
    scrollbar-width: none;
  }
  #destinations .dest-grid::-webkit-scrollbar {
    display: none;
  }
  #destinations .dest-card {
    flex: 0 0 100%;
    min-width: 0;
    max-width: 100%;
    scroll-snap-align: start;
  }
  .hero-rule {
    width: 200px;
    margin-top: 10px;
  }
  .hero-text {
    margin-top: 10px;
    line-height: 1.7;
  }
  .trust-list {
    gap: 6px 16px;
    font-size: 11.5px;
    margin-top: 14px;
  }
  .booking-card {
    max-width: 100%;
    /* margin-top: 56px; */
  }
  .chips-wrap {
    margin-top: -46px;
  }
  .review-card {
    flex: 0 0 85vw;
  }
  /* Featured-tour cards fill the container's own (already-padded) width
     exactly, so left/right gaps stay equal and no sliver of the next
     card peeks in and reads as "cut off". */
  .pkg-card {
    flex: 0 0 100%;
  }
  .btn {
    padding: 12px 22px;
  }
}

/* ---------- HEADER — responsive (laptop / tablet / mobile) ---------- */
/* laptop: keep the full nav bar, just tighten spacing so the centered
   nav never crowds the logo/CTA at the narrow end of this range */
@media (max-width: 1439px) {
  .main-nav {
    gap: clamp(10px, 1.4vw, 26px);
  }
  .hdr-cta {
    padding: 0 22px;
  }
}

/* tablet: swap the inline nav for the hamburger + off-canvas drawer */
@media (max-width: 1023px) {
  :root {
    --header-h: 70px;
  }
  .header-shell {
    height: 70px;
  }
  .main-nav,
  .header-actions .hdr-cta {
    display: none;
  }
  .burger {
    display: grid;
  }
  .mobile-nav {
    display: flex;
  }
}

/* mobile: compact header, smaller hanging logo, wider (80vw) drawer */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
    --logo-h: 80px;
  }
  .header-shell {
    height: 64px;
  }
  .logo {
    width: 144px;
    height: 80px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .logo img {
    height: 48px;
  }
  .mobile-nav {
    width: 80vw;
  }
}

/* touch-friendly tap targets on mobile/tablet */
@media (max-width: 768px) {
  .arrow,
  .burger,
  .wa-btn,
  .socials a {
    height: 44px;
    width: 44px;
  }
  .btn--sm {
    padding-block: 13px;
  }
}
@media (max-width: 480px) {
  .stats {
    padding: 28px 20px;
  }
}

.map-pin{
  font-size: 10px;
}

/* ---------- 17. SHARED PAGE COMPONENTS ----------
   Used across multiple pages (Trips, About, ...): a masonry-style
   image grid and a gradient CTA banner. Kept here instead of a
   per-page stylesheet so every page shares one source of truth. */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
  gap: 16px;
}
.masonry-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--sh-card);
}
.masonry-gallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.masonry-gallery a:hover img {
  transform: scale(1.08);
}
.masonry-gallery a:nth-child(1) {
  grid-row: span 2;
}
.masonry-gallery a:nth-child(5) {
  grid-row: span 2;
}

.cta-banner {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-lift);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(91, 61, 245, 0.93) 0%,
    rgba(123, 97, 255, 0.9) 55%,
    rgba(139, 92, 246, 0.88) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 56px 32px;
  color: #fff;
}
.cta-content h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1.15;
}
.cta-content p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.cta-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .masonry-gallery a:nth-child(5) {
    grid-row: auto;
  }
}
@media (max-width: 560px) {
  /* The 340px floor was tuned for a wide desktop box; on a narrow phone
     the wrapped 2-line heading + text + stacked buttons already fill
     that height, so the fixed min-height just adds dead space above/below. */
  .cta-banner {
    min-height: 0;
  }
  .cta-content {
    padding: 36px 20px;
  }
  .cta-content h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
  .cta-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
  }

  .gallery-cta{
    margin-top: 20px;
  }

  .sec-sub 
{
 margin-top: 0px ;
 margin-bottom: 8px ;
}
}
