/* ============================================================
   Ghumakad Trails — Global Stylesheet
   Design system + all shared components
   Palette: Orange #FF9F1C · White · Sky Blue #D9F3FF · Dark Mountain #1E2A38
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --orange: #FF9F1C;
  --orange-dark: #e88a05;
  --white: #ffffff;
  --sky: #D9F3FF;
  --sky-soft: #eef9ff;
  --mountain: #1E2A38;
  --mountain-2: #26364a;
  --text: #222222;
  --muted: #5b6673;
  --border: #e6ebf1;
  --card: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f7fafc;

  --shadow-sm: 0 2px 8px rgba(30, 42, 56, .06);
  --shadow: 0 10px 30px rgba(30, 42, 56, .10);
  --shadow-lg: 0 20px 50px rgba(30, 42, 56, .18);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-script: 'Caveat', 'Pacifico', cursive;

  --nav-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Dark Mode ---------- */
html[data-theme="dark"] {
  --white: #0f1620;
  --bg: #0f1620;
  --bg-alt: #141d29;
  --card: #18222f;
  --text: #eef2f6;
  --muted: #9fb0c0;
  --border: #26333f;
  --sky-soft: #14202c;
  --mountain: #0a0f16;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .4);
  --shadow-lg: 0 24px 55px rgba(0, 0, 0, .55);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}
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; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 92%; max-width: var(--maxw); margin-inline: auto; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.orange { color: var(--orange); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  display: inline-flex; gap: .35rem; align-items: center; flex-wrap: wrap; justify-content: center;
}
.section-head p { color: var(--muted); margin-top: 10px; font-size: 1.02rem; }
.eyebrow {
  color: var(--orange); font-family: var(--font-head); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; font-size: .78rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 50px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; box-shadow: 0 8px 22px rgba(255, 159, 28, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255, 159, 28, .45); }
.btn-ghost { background: rgba(255, 255, 255, .14); color: #fff; border: 1.5px solid rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .26); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: var(--card); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37, 211, 102, .45); }
.btn-block { width: 100%; justify-content: center; }
/* Ripple */
.btn::after {
  content: ""; position: absolute; inset: 0; background: rgba(255, 255, 255, .35);
  border-radius: 50%; transform: scale(0); opacity: 0; pointer-events: none;
}
.btn.rippling::after { animation: ripple .6s var(--ease); }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .3s;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar.scrolled { background: var(--card); box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.brand .logo-mark { width: 44px; height: 44px; flex: none; }
.brand-text { line-height: 1; }
.brand-text b { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: .3px; }
.brand-text b .u { color: var(--orange); }
.brand-text span { display: block; font-size: .56rem; letter-spacing: .28em; color: #dfe7ef; margin-top: 3px; text-transform: uppercase; }
.navbar.scrolled .brand-text b { color: var(--text); }
.navbar.scrolled .brand-text span { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .93rem; color: #eef2f6;
  position: relative; padding: 4px 0; transition: color .2s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 1.1rem; transition: background .25s, transform .25s;
}
.navbar.scrolled .theme-toggle { color: var(--text); }
.theme-toggle:hover { background: rgba(128, 128, 128, .18); transform: rotate(20deg); }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.hamburger span { width: 24px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s var(--ease); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--card); padding: 10px 0 20px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .4s var(--ease); z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 15px 8%; color: var(--text); border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-desktop-book { display: none; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  background-size: cover; background-position: center;
  transition: opacity 1.1s var(--ease), transform 6s ease;
  transform: scale(1.06);
}
.slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,32,.55) 0%, rgba(15,22,32,.35) 40%, rgba(15,22,32,.78) 100%); }
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-content {
  position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column;
  justify-content: center; max-width: 640px; padding-top: var(--nav-h);
}
.hero-content .eyebrow { color: var(--sky); }
.hero-script { font-family: var(--font-script); font-size: clamp(2.4rem, 6vw, 4rem); color: #fff; line-height: 1; font-weight: 700; }
.hero-script .big { display: block; color: var(--orange); font-size: 1.35em; }
.hero-content p { color: #e9eef3; font-size: 1.12rem; margin: 18px 0 30px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; background: rgba(15,22,32,.4);
  color: #fff; display: grid; place-items: center; font-size: 1.3rem;
  border: 1px solid rgba(255,255,255,.25); transition: background .25s, transform .25s;
}
.hero-arrow:hover { background: var(--orange); }
.hero-arrow.prev { left: 22px; } .hero-arrow.next { right: 22px; }
.hero-dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); transition: .3s; }
.hero-dots button.active { background: var(--orange); width: 30px; border-radius: 6px; }
@media (max-width: 640px) { .hero-arrow { display: none; } }

/* ============================================================
   SEARCH DESTINATION BAR
   ============================================================ */
.search-wrap { margin-top: -46px; position: relative; z-index: 20; }
.search-box {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 18px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end;
}
.search-box .field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.search-box label { font-size: .74rem; font-weight: 600; font-family: var(--font-head); color: var(--muted); letter-spacing: .04em; }
.search-box select, .search-box input {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-family: var(--font-body); font-size: .95rem; background: var(--bg); color: var(--text);
  appearance: none;
}
.search-box select:focus, .search-box input:focus { border-color: var(--orange); outline: none; }
@media (max-width: 760px) { .search-box { grid-template-columns: 1fr; } }

/* ============================================================
   TRIP CARDS
   ============================================================ */
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.trip-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.trip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trip-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.trip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.trip-card:hover .trip-media img { transform: scale(1.09); }
.trip-badge { position: absolute; top: 12px; left: 12px; background: rgba(15,22,32,.78); color: #fff; font-size: .72rem; font-weight: 600; font-family: var(--font-head); padding: 5px 12px; border-radius: 50px; backdrop-filter: blur(4px); }
.trip-fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--mountain); display: grid; place-items: center; font-size: .95rem; transition: .25s; }
.trip-fav:hover, .trip-fav.on { background: var(--orange); color: #fff; }
.trip-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.trip-loc { color: var(--orange); font-size: .82rem; font-weight: 600; font-family: var(--font-head); display: flex; align-items: center; gap: 5px; }
.trip-body h3 { font-size: 1.16rem; }
.trip-body p { color: var(--muted); font-size: .9rem; flex: 1; }
.trip-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; border-top: 1px solid var(--border); margin-top: 4px; }
.trip-price b { font-family: var(--font-head); font-size: 1.25rem; color: var(--text); }
.trip-price span { font-size: .78rem; color: var(--muted); }
.trip-actions { display: flex; gap: 10px; margin-top: 12px; }
.trip-actions .btn { flex: 1; justify-content: center; padding: 10px 14px; font-size: .85rem; }

.center-cta { text-align: center; margin-top: 42px; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-split .media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-split h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.about-split p { color: var(--muted); margin-bottom: 14px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.about-feat { display: flex; gap: 12px; align-items: flex-start; }
.about-feat .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--sky-soft); color: var(--orange); display: grid; place-items: center; font-size: 1.2rem; }
.about-feat b { font-family: var(--font-head); font-size: .95rem; display: block; }
.about-feat small { color: var(--muted); font-size: .82rem; }
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.why-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-card .ic {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 18px;
  background: linear-gradient(135deg, var(--sky-soft), #fff); color: var(--orange);
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
html[data-theme="dark"] .why-card .ic { background: linear-gradient(135deg, #17222f, #1c2836); }
.why-card:hover .ic { transform: translateY(-4px) rotate(-6deg); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-card p { color: var(--muted); font-size: .88rem; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--mountain), var(--mountain-2)); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='200' viewBox='0 0 1200 200'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0 200 L200 90 L400 150 L620 40 L820 130 L1000 60 L1200 140 L1200 200 Z'/%3E%3C/svg%3E") bottom/cover no-repeat; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); color: var(--orange); display: block; }
.stat span { color: #cdd7e1; font-size: .95rem; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 22px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 clamp(280px, 90%, 380px); scroll-snap-align: center; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm);
}
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testi-head img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testi-head b { font-family: var(--font-head); display: block; font-size: .98rem; }
.testi-head small { color: var(--muted); }
.testi-stars { color: var(--orange); font-size: .9rem; letter-spacing: 2px; margin-bottom: 8px; }
.testi-card p { color: var(--muted); font-size: .93rem; }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.testi-dots button.active { background: var(--orange); width: 26px; border-radius: 6px; }

/* ============================================================
   GALLERY (masonry)
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.chip {
  padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--border); background: var(--card);
  font-family: var(--font-head); font-weight: 500; font-size: .85rem; color: var(--muted); transition: .25s;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.masonry { columns: 4 240px; column-gap: 16px; }
.masonry figure { break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; position: relative; box-shadow: var(--shadow-sm); }
.masonry img { width: 100%; transition: transform .5s var(--ease); }
.masonry figure::after { content: "\1F50D"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.5rem; background: rgba(15,22,32,.35); opacity: 0; transition: .3s; }
.masonry figure:hover::after { opacity: 1; }
.masonry figure:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(10,15,22,.92); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.14); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; display: grid; place-items: center; transition: background .2s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--orange); }
.lb-close { top: 24px; right: 24px; }
.lb-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .media img { transform: scale(1.07); }
.blog-body { padding: 20px; }
.blog-tags { display: flex; gap: 10px; font-size: .76rem; color: var(--orange); font-weight: 600; font-family: var(--font-head); margin-bottom: 8px; }
.blog-tags .dot { color: var(--muted); }
.blog-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.blog-body p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.blog-more { color: var(--orange); font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.blog-more:hover { gap: 10px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--text); }
.faq-q .plus { color: var(--orange); font-size: 1.4rem; transition: transform .3s var(--ease); flex: none; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 22px 18px; color: var(--muted); font-size: .93rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: center; }
.contact-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-soft); color: var(--orange); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.contact-row b { font-family: var(--font-head); display: block; font-size: .95rem; }
.contact-row small { color: var(--muted); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-top: 10px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-field { margin-bottom: 16px; }
.form-field label { font-family: var(--font-head); font-weight: 500; font-size: .85rem; display: block; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-family: var(--font-body); font-size: .93rem; background: var(--bg); color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--mountain); color: #cdd7e1; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer a { color: #cdd7e1; font-size: .9rem; display: inline-block; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer a:hover { color: var(--orange); padding-left: 4px; }
.footer .brand-text b { color: #fff; }
.footer p { font-size: .9rem; margin: 14px 0; max-width: 280px; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1rem; padding: 0; }
.socials a:hover { background: var(--orange); color: #fff; padding-left: 0; }
.news-form { display: flex; gap: 8px; margin-top: 14px; }
.news-form input { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font-body); }
.news-form input::placeholder { color: #8ea0b2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; text-align: center; font-size: .85rem; color: #9fb0c0; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner { position: relative; padding: calc(var(--nav-h) + 60px) 0 60px; background-size: cover; background-position: center; text-align: center; color: #fff; }
.page-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,32,.62), rgba(15,22,32,.78)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 12px; font-size: .88rem; color: #d6dee7; }
.breadcrumb a:hover { color: var(--orange); }

/* ============================================================
   DESTINATION DETAIL
   ============================================================ */
.dest-hero { position: relative; height: 62vh; min-height: 440px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.dest-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,32,.35), rgba(15,22,32,.85)); }
.dest-hero .container { position: relative; z-index: 2; padding-bottom: 40px; color: #fff; }
.dest-hero .badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.dest-hero .badges span { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); padding: 6px 14px; border-radius: 50px; font-size: .82rem; font-family: var(--font-head); backdrop-filter: blur(4px); }
.dest-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; }

.dest-layout { display: grid; grid-template-columns: 1fr 350px; gap: 40px; align-items: start; }
.dest-main > section { margin-bottom: 40px; }
.dest-main h2 { font-size: 1.5rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.dest-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dest-gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; cursor: zoom-in; transition: transform .3s; }
.dest-gallery img:hover { transform: scale(1.03); }
.hl-list, .inc-list { display: grid; gap: 10px; }
.hl-list li, .inc-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.hl-list li::before { content: "\2691"; color: var(--orange); }
.inc-list.yes li::before { content: "\2713"; color: #16a34a; font-weight: 700; }
.inc-list.no li::before { content: "\2717"; color: #dc2626; font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } .dest-gallery { grid-template-columns: repeat(2, 1fr); } }

/* timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 22px; }
.tl-item::before { content: ""; position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--sky-soft); }
.tl-item .d { font-family: var(--font-head); font-weight: 600; color: var(--orange); font-size: .82rem; }
.tl-item h4 { font-size: 1.02rem; margin: 2px 0 4px; }
.tl-item p { color: var(--muted); font-size: .9rem; }

/* booking sidebar */
.book-side { position: sticky; top: calc(var(--nav-h) + 20px); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.book-side .price { font-family: var(--font-head); font-size: 2rem; color: var(--text); }
.book-side .price small { font-size: .9rem; color: var(--muted); font-weight: 400; }
.book-side .qrow { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.book-side .qrow span:first-child { color: var(--muted); }
.book-side .qrow b { font-family: var(--font-head); }
.book-side .btn { margin-top: 8px; }
.book-side .side-off { display: inline-block; background: #16a34a; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .74rem; padding: 4px 10px; border-radius: 6px; margin-bottom: 8px; }
.book-side .price-old { font-size: 1.1rem; color: var(--muted); }
.book-side .side-save { color: #16a34a; font-family: var(--font-head); font-weight: 600; font-size: .84rem; margin-bottom: 4px; }
@media (max-width: 900px) { .dest-layout { grid-template-columns: 1fr; } .book-side { position: static; } }

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; box-shadow: var(--shadow); transition: transform .25s; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25d366; animation: pulse 2.4s infinite; }
.float-call { background: var(--orange); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

#backTop { width: 46px; height: 46px; border-radius: 50%; background: var(--mountain); color: #fff; font-size: 1.1rem; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
#backTop.show { opacity: 1; pointer-events: auto; }
#backTop:hover { background: var(--orange); transform: translateY(-3px); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); z-index: 1100; transition: width .1s linear; }

/* Sticky mobile booking bar */
.sticky-book { position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; background: var(--card); border-top: 1px solid var(--border); padding: 12px 16px; display: none; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
.sticky-book .p b { font-family: var(--font-head); font-size: 1.2rem; }
.sticky-book .p small { display: block; color: var(--muted); font-size: .75rem; }
@media (max-width: 900px) { .dest-page .sticky-book { display: flex; } .dest-page .floaties { bottom: 84px; } }

/* ============================================================
   MODAL (booking form)
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 2500; background: rgba(10,15,22,.6); backdrop-filter: blur(4px); display: none; place-items: center; padding: 20px; }
.modal-overlay.open { display: grid; animation: fadeIn .3s; }
.modal {
  background: var(--card); border-radius: var(--radius-lg); width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); transform: translateY(20px); animation: slideUp .4s var(--ease) forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } }
.modal-head { padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--card); z-index: 2; }
.modal-head h3 { font-size: 1.25rem; }
.modal-head small { color: var(--muted); }
.modal-close { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; color: var(--muted); transition: .2s; }
.modal-close:hover { background: var(--bg-alt); color: var(--text); }
.modal-body { padding: 24px 26px; }
.modal-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 8px; }

/* ============================================================
   MISC: cookie, newsletter toast, loader, cursor
   ============================================================ */
#loader { position: fixed; inset: 0; z-index: 5000; background: var(--bg); display: grid; place-items: center; transition: opacity .5s, visibility .5s; }
#loader.hide { opacity: 0; visibility: hidden; }
.loader-mark { width: 70px; height: 70px; animation: bob 1.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.loader-txt { font-family: var(--font-script); font-size: 1.8rem; color: var(--orange); margin-top: 8px; text-align: center; }

.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 950; max-width: 360px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg); display: none; }
.cookie.show { display: block; animation: slideUp .4s var(--ease); }
.cookie p { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.cookie .row { display: flex; gap: 10px; }
.cookie .btn { padding: 8px 18px; font-size: .82rem; }

.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120%); z-index: 4000; background: var(--mountain); color: #fff; padding: 14px 24px; border-radius: 50px; font-family: var(--font-head); font-size: .9rem; box-shadow: var(--shadow-lg); transition: transform .4s var(--ease); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.zoom { transform: scale(.92); }
.reveal.zoom.in { transform: scale(1); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Utility */
.mt-0 { margin-top: 0; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   MARKETING: promo bar, offer pricing, badges
   ============================================================ */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200; height: 40px;
  background: linear-gradient(90deg, var(--mountain), #2b3d52);
  color: #fff; display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: .84rem; font-family: var(--font-body); padding: 0 44px 0 14px; text-align: center;
  overflow: hidden; white-space: nowrap;
}
.promo-bar b { color: var(--orange); }
.promo-bar span { overflow: hidden; text-overflow: ellipsis; }
.promo-x { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 1.4rem; width: 30px; height: 30px; border-radius: 50%; opacity: .8; }
.promo-x:hover { opacity: 1; background: rgba(255,255,255,.15); }
body.has-promo .navbar { top: 40px; }
body.has-promo .hero { margin-top: 40px; }
@media (max-width: 640px) { .promo-bar { font-size: .72rem; height: 52px; white-space: normal; line-height: 1.2; } body.has-promo .navbar { top: 52px; } body.has-promo .hero { margin-top: 52px; } }

/* Offer price block */
.price-wrap { display: inline-flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price-old { color: var(--muted); font-size: .95rem; text-decoration: line-through; opacity: .8; }
.price-new { font-family: var(--font-head); font-size: 1.35rem; color: var(--text); }
.price-per { font-size: .75rem; color: var(--muted); }
.off-badge { background: #16a34a; color: #fff; font-size: .68rem; font-weight: 700; font-family: var(--font-head); padding: 2px 8px; border-radius: 6px; }

/* Urgency + savings row on cards */
.trip-urgency { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; font-family: var(--font-head); color: #dc2626; }
.trip-urgency .dotpulse { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.trip-save { font-size: .76rem; color: #16a34a; font-weight: 600; font-family: var(--font-head); }

/* Corner discount ribbon on media */
.trip-ribbon { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg,#16a34a,#0f8a3d); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; padding: 5px 10px; border-radius: 8px; box-shadow: var(--shadow-sm); z-index: 2; }

/* One-click quick book button */
.btn-quick { background: #25d366; color: #fff; }
.btn-quick:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(37,211,102,.4); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .ic { font-size: 1.5rem; }
.trust-item b { font-family: var(--font-head); font-size: 1.05rem; display: block; line-height: 1.1; }
.trust-item small { color: var(--muted); font-size: .8rem; }

/* ============================================================
   INSTAGRAM REELS / VIDEO SECTION
   ============================================================ */
.ig-head { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 12px; }
.ig-handle { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--orange); }
.reels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

/* Local video reels — play inline on the site (no redirect) */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.video-reel { position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #000; border: 1px solid var(--border); }
.video-reel video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.video-reel .vr-cap { position: absolute; left: 12px; bottom: 44px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 500; font-size: .82rem; text-shadow: 0 1px 6px rgba(0,0,0,.6); pointer-events: none; }
.video-reel .vr-ig { position: absolute; top: 10px; right: 10px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.video-reel .vr-ig:hover { background: var(--orange); }

/* Destination sidebar video */
.dest-ig { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-top: 16px; aspect-ratio: 9/14; background: #000; }
.dest-ig video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-ig .vr-cap { position: absolute; left: 12px; bottom: 44px; z-index: 2; color: #fff; font-family: var(--font-head); font-size: .8rem; text-shadow: 0 1px 6px rgba(0,0,0,.6); pointer-events: none; }
.dest-ig .vr-ig { position: absolute; top: 10px; right: 10px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; display: grid; place-items: center; }
.dest-ig .vr-ig:hover { background: var(--orange); }
.reel {
  position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; background: #000; display: block;
}
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; }
.reel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.65));
}
.reel .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--mountain); display: grid; place-items: center; font-size: 1.3rem; transition: transform .25s; }
.reel:hover .play { transform: translate(-50%,-50%) scale(1.12); }
.reel .cap { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; color: #fff; font-size: .82rem; font-family: var(--font-head); font-weight: 500; }
.reel .ig-tag { position: absolute; top: 10px; left: 10px; z-index: 3; color: #fff; font-size: 1.1rem; }
.reel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reel { transition: transform .3s var(--ease), box-shadow .3s; }

/* Ken Burns motion (makes still posters feel like video) */
.kenburns { animation: kb 16s ease-in-out infinite alternate; will-change: transform; }
.kb0 { animation-name: kbA; } .kb1 { animation-name: kbB; } .kb2 { animation-name: kbC; } .kb3 { animation-name: kbD; }
@keyframes kbA { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.22) translate(-3%,-4%); } }
@keyframes kbB { from { transform: scale(1.18) translate(2%,3%); } to { transform: scale(1.04) translate(0,0); } }
@keyframes kbC { from { transform: scale(1.06) translate(-2%,2%); } to { transform: scale(1.2) translate(2%,-3%); } }
@keyframes kbD { from { transform: scale(1.2) translate(0,-3%); } to { transform: scale(1.06) translate(-2%,2%); } }
@keyframes kb { from { transform: scale(1.05); } to { transform: scale(1.2); } }
@media (prefers-reduced-motion: reduce) { .kenburns { animation: none; } }

/* Destination side video */
.dest-video { border-radius: var(--radius); overflow: hidden; margin-top: 16px; position: relative; box-shadow: var(--shadow-sm); }
.dest-video video, .dest-video img { width: 100%; display: block; aspect-ratio: 9/12; object-fit: cover; }
.dest-video .vlabel { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 12px 10px; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; font-size: .8rem; font-family: var(--font-head); }
.dest-video .ig-tag { position: absolute; top: 10px; left: 10px; color: #fff; z-index: 2; }

/* ============================================================
   SOCIAL PROOF POPUP
   ============================================================ */
.social-pop {
  position: fixed; left: 20px; bottom: 20px; z-index: 940; max-width: 320px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  transform: translateX(-140%); transition: transform .5s var(--ease); pointer-events: none;
}
.social-pop.show { transform: translateX(0); }
.social-pop .sp-ic { font-size: 1.3rem; }
.social-pop .sp-body b { font-family: var(--font-head); font-size: .88rem; }
.social-pop .sp-body small { display: block; color: var(--muted); font-size: .74rem; margin-top: 2px; }
body.has-promo .cookie { bottom: 20px; }
@media (max-width: 600px) { .social-pop { display: none; } }
