:root {
  --orange: #e8852b;
  --orange-dark: #d2701a;
  --ink: #2b2118;
  --muted: #6b5d4f;
  --cream: #fdf6ec;
  --whatsapp: #25a34a;
  --dark-bar: #2e231a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7e2c4;
  padding-bottom: 70px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center right / cover no-repeat;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* keep the left side readable for text, let the temple show on the right */
  background: linear-gradient(90deg, rgba(253,243,228,0.92) 0%, rgba(253,243,228,0.6) 38%, rgba(253,243,228,0.15) 65%, transparent 85%);
  pointer-events: none;
}

/* floating leaves */
.leaf {
  position: absolute;
  font-size: 22px;
  opacity: 0.7;
  animation: float 7s ease-in-out infinite;
}
.leaf--1 { top: 18%; right: 24%; animation-delay: 0s; }
.leaf--2 { top: 55%; left: 4%;  animation-delay: 1.5s; font-size: 16px; }
.leaf--3 { top: 70%; right: 8%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(15deg); }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 10px 0;
  background: transparent;
  transition: padding .35s ease, box-shadow .35s ease;
}
/* sunrise header image — hidden over the hero, rises up when scrolled */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fdf3e4 url('assets/header-bg.png') center / cover no-repeat;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .75s ease;
  pointer-events: none;
}
.navbar--scrolled::before {
  opacity: 1;
  transform: translateY(0);
}
.navbar--scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  padding: 2px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  transition: width .35s ease, height .35s ease;
}
.navbar--scrolled .brand__logo { width: 128px; height: 128px; }

.nav { display: flex; gap: 32px; }
.nav__link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
  position: relative;
  transition: color .2s;
}
.nav__link:hover { color: var(--orange); }
.nav__link.is-active { color: var(--orange); font-weight: 600; }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.navbar__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-left: auto;
}
.phone {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 16px;
  white-space: nowrap;
}
.phone__icon { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 22px;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(232,133,43,0.35);
}
.btn--primary:hover { background: var(--orange-dark); }
.btn--join { padding: 13px 26px; font-size: 16px; }
.btn--outline {
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  border: 1.5px solid var(--orange);
}
.btn--outline span { color: var(--orange); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(37,163,74,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
}

/* ---- Hero content ---- */
.hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 170px 0 60px;
}
.hero__text { max-width: 760px; }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 1px;
  white-space: nowrap;
}
/* ornamental divider under the title */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin: 16px 0 4px;
}
.ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.ornament__diamond { color: var(--orange); font-size: 13px; }

.hero__subtitle {
  margin-top: 14px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--muted);
  font-weight: 500;
}

.features {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 26px 0;
  max-width: 560px;
}
.feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 600; color: #5a4a3a;
}
.feature__icon {
  flex-shrink: 0;
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.85);
  color: var(--orange);
  border-radius: 50%;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* small white stats card inside hero */
.mini-stats {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  padding: 16px 28px;
  margin-top: 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.mini-stats__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(232,133,43,0.15);
  font-size: 24px;
  flex-shrink: 0;
}
.mini-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}
.mini-stat span { font-size: 12.5px; color: var(--muted); }
.mini-stats__sep { width: 1px; height: 38px; background: rgba(0,0,0,0.12); }

/* ---- Community card ---- */
.community-card {
  position: absolute;
  right: 4%;
  bottom: 150px;
  z-index: 7;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: 290px;
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.community-card__title { font-size: 18px; font-weight: 700; }
.community-card__count {
  margin-top: 6px; color: var(--muted); font-size: 14px;
}
.community-card__count strong { color: var(--orange); font-size: 17px; }
.avatars { display: flex; align-items: center; margin: 14px 0; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: linear-gradient(135deg, #e8852b, #f6c98a);
}
.avatar:first-child { margin-left: 0; }
.avatar--more {
  display: grid; place-items: center;
  background: var(--orange);
  color: #fff; font-size: 11px; font-weight: 700;
}
.community-card__text { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }

/* ============ NEXT SECTION (white) ============ */
.next-section {
  background: #fff;
  padding-bottom: 40px;
}

/* ---- Dark stats bar (divider between hero and next section) ---- */
.stats-bar {
  position: relative;
  z-index: 8;
  margin-top: -56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 20px;
  border-radius: 26px;
  background: linear-gradient(120deg, #2a1f15 0%, #3b2c1d 60%, #2a1f15 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}
.stats-bar .stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 24px;
}
.stats-bar .stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-bar .stat__icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 26px;
  background: radial-gradient(circle at 32% 28%, #f3c069, #c8821f);
  box-shadow: 0 6px 16px rgba(200,130,30,0.45);
}
.stat__text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.stat__text span {
  font-size: 13px;
  color: #cdb89a;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 90px; right: 4%;
    flex-direction: column;
    background: #fff;
    padding: 18px 24px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: block; }
  .navbar__actions .phone,
  .navbar__actions .btn--join { display: none; }
  .hero__content { flex-direction: column; align-items: flex-start; }
  .hero__title { white-space: normal; }
  .community-card {
    position: static;
    width: 100%;
    max-width: 340px;
    margin-top: 28px;
  }
  .mini-stats { flex-wrap: wrap; gap: 16px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
  .stats-bar .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 620px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stats-bar .stat { border-right: none !important; }
  .mini-stats__sep { display: none; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}

/* ===================================================================
   SECTIONS BELOW THE HERO (home-page hero/header/stats unchanged)
   =================================================================== */
.section { padding: 84px 0; background: #fff; }
.section--cream { background: var(--cream); }
.container--narrow { width: min(820px, 92%); margin-inline: auto; }
.btn--block { width: 100%; justify-content: center; }

/* shared section header */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow--light { color: #ffe6c4; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--ink);
  line-height: 1.15;
}
.section-title--left { text-align: left; }
.section-sub { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.ornament--center { margin-left: auto; margin-right: auto; }

/* ---- How It Works (full art image + text overlay) ---- */
.how {
  position: relative;
  padding: 0;
  aspect-ratio: 1824 / 862;
  background: #fbeede url('assets/how-it-works.png') center / cover no-repeat;
  overflow: hidden;
  color: var(--ink);
}
/* header text overlay */
.how__head {
  position: absolute; top: 2.2%; left: 50%; transform: translateX(-50%);
  width: 76%; text-align: center;
}
.how__head .eyebrow { font-size: 0.9vw; margin: 0; }
.how__orn { display: flex; align-items: center; justify-content: center; gap: 0.7vw; margin: 0.5vw 0 0.2vw; }
.how__orn-line { width: 2.4vw; height: 1px; background: linear-gradient(90deg, transparent, var(--orange)); }
.how__orn .how__orn-line:last-child { background: linear-gradient(90deg, var(--orange), transparent); }
.how__flower { color: var(--orange); font-size: 1.1vw; line-height: 1; }
.how__title {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 3.4vw; line-height: 1.08; color: var(--ink); margin: 0.3vw 0;
}
.how__ornament { margin: 0.6vw auto; }
.how__ornament .ornament__line { width: 3vw; }
.how__ornament .ornament__diamond { font-size: 0.8vw; }
.how__sub { font-size: 1.05vw; color: var(--muted); line-height: 1.5; margin-top: 0.4vw; }

/* per-card text overlays */
.how__txt {
  position: absolute; top: 65.5%;
  width: 18%; text-align: center; transform: translateX(-50%);
}
.how__txt--1 { left: 26%; }
.how__txt--2 { left: 50%; }
.how__txt--3 { left: 74%; }
.how__txt h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.45vw; color: var(--ink); line-height: 1.15;
}
.how__uline { display: block; width: 2.3vw; height: 2px; background: var(--orange); border-radius: 2px; margin: 0.55vw auto 0.7vw; }
.how__txt p { font-size: 0.92vw; color: var(--muted); line-height: 1.5; margin: 0; }

/* The aspect-ratio + vw sizing keeps the whole section (image + text) scaling
   together at every width, so the text stays aligned to the cards on any screen. */

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__text .section-title { margin-top: 16px; }
.about__lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 22px 0 0;
}

/* eyebrow with flanking lines */
.eyebrow-orn { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-orn .eyebrow { margin: 0; }
.eyebrow-orn__line { width: 34px; height: 1px; background: var(--orange); opacity: .55; }

/* feature rows */
.about__features { display: grid; gap: 22px; margin-bottom: 34px; }
.about__feature { display: flex; gap: 16px; align-items: flex-start; }
.about__feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(232,133,43,0.12);
  font-size: 22px;
}
.about__feature h4 { font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.about__feature p { color: var(--muted); font-size: 14.5px; }

/* cta row */
.about__cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.about__video { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.about__play {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
}
.about__video-text strong { display: block; color: var(--ink); font-size: 15px; }
.about__video-text span { font-size: 13px; color: var(--muted); }

/* right: 2x2 image grid with center ring */
.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  aspect-ratio: 1 / 0.94;
}
.about__tile {
  border-radius: 18px;
  background: #e9d3b0 url('assets/hero-bg.png') center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.about__ring {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 172px; height: 172px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-content: center; text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  border: 6px solid var(--cream);
}
.about__ring strong {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--orange); line-height: 1;
}
.about__ring span { font-size: 12.5px; color: var(--muted); margin-top: 6px; padding: 0 18px; }
.ticks { list-style: none; margin: 18px 0 26px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: #4a3c2e; font-weight: 500; }
.ticks li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--orange); color: #fff;
  border-radius: 50%; font-size: 11px;
}
.ticks--light li { color: #fdeedd; }
.ticks--light li::before { background: #fff; color: var(--orange); }

/* ---- Tour cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.14); }
.tour-card__media {
  position: relative;
  height: 190px;
  background: #e9d3b0 center / cover no-repeat;
}
.tour-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.25));
}
.tour-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px;
}
.tour-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.tour-card__title { font-size: 20px; font-weight: 700; color: var(--ink); }
.tour-card__route { color: var(--muted); font-size: 14px; margin-top: 6px; }
.tour-card__highlights { list-style: none; margin: 14px 0; display: grid; gap: 8px; }
.tour-card__highlights li { position: relative; padding-left: 22px; font-size: 14px; color: #5a4a3a; }
.tour-card__highlights li::before {
  content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.tour-card__foot { margin: 6px 0 16px; }
.tour-card__price span { font-size: 12px; color: var(--muted); display: block; }
.tour-card__price strong { font-size: 22px; color: var(--orange); font-family: 'Playfair Display', serif; }
.tour-card__actions { margin-top: auto; display: grid; gap: 10px; }

/* ---- Destinations (orbit design) ---- */
.dest-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: repeat(4, auto);
  column-gap: 30px;
  row-gap: 22px;
  align-items: stretch;
}
/* animated line overlay + traveling marker */
.dest-fx {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 6;
}
.dest-fx__path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 5px rgba(232,133,43,0.45));
}
.fly-chip {
  position: absolute; top: 0; left: 0;
  z-index: 7;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #e9d3b0 center / cover no-repeat;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* mobile destinations carousel + dots (hidden on desktop/tablet) */
.dest-carousel { display: none; }
.dest-dots { display: none; }
.dest-carousel {
  width: 100%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 8% 8px;
}
.dest-carousel::-webkit-scrollbar { display: none; }
.dest-carousel .dcard {
  flex: 0 0 84%;
  scroll-snap-align: center;
  margin: 0;
}
.dest-dots { gap: 8px; justify-content: center; align-items: center; }
.dest-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(232,133,43,0.32); transition: width .25s, background .25s, border-radius .25s;
}
.dest-dots button.is-active { background: var(--orange); width: 22px; border-radius: 5px; }

.dest-col { display: contents; }
.dest-col--left .dcard { grid-column: 1; }
.dest-col--right .dcard { grid-column: 3; }
.dest-col--left .dcard:nth-child(1), .dest-col--right .dcard:nth-child(1) { grid-row: 1; }
.dest-col--left .dcard:nth-child(2), .dest-col--right .dcard:nth-child(2) { grid-row: 2; }
.dest-col--left .dcard:nth-child(3), .dest-col--right .dcard:nth-child(3) { grid-row: 3; }
.dest-col--left .dcard:nth-child(4), .dest-col--right .dcard:nth-child(4) { grid-row: 4; }

/* numbered cards */
.dcard {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.dcard:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(0,0,0,0.12); }
.dcard__img {
  flex-shrink: 0;
  width: 116px;
  align-self: stretch;
  border-radius: 14px;
  background: #e9d3b0 url('assets/hero-bg.png') center / cover no-repeat;
}
.dcard__body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.dcard__num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 800;
  color: #ecd9bf; line-height: 1;
}
.dcard__title { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--ink); margin-top: 2px; }
.dcard__loc { display: block; color: var(--orange); font-weight: 600; font-size: 13.5px; margin: 4px 0 8px; }
.dcard__desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.dcard__arrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); margin-top: 12px; font-size: 16px; }
.dcard__arrow i { width: 26px; height: 2px; background: var(--orange); border-radius: 2px; display: inline-block; }

/* center column: top card (row 1), orbit (rows 2-3), bottom card (row 4) */
#destTop { grid-column: 2; grid-row: 1; }
.orbit { grid-column: 2; grid-row: 2 / 4; align-self: center; justify-self: center; }
#destBottom { grid-column: 2; grid-row: 4; }
.dest-center-card { display: flex; justify-content: center; }
.dest-center-card .dcard { width: min(340px, 82vw); }
.orbit { position: relative; width: min(440px, 82vw); aspect-ratio: 1; }
.orbit__ring { position: absolute; border-radius: 50%; }
.orbit__ring--dotted {
  inset: 4%;
  border: 2px dotted rgba(232,133,43,0.4);
  animation: orbit-spin 38s linear infinite;
}
.orbit__ring--solid {
  inset: 17%;
  border: 1.5px solid rgba(232,133,43,0.20);
  box-shadow: inset 0 0 50px rgba(232,133,43,0.07);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.orbit__om {
  position: absolute; top: -1%; left: 50%; transform: translate(-50%, -50%);
  z-index: 4;
  width: 44px; height: 44px;
  color: var(--orange);
  filter: drop-shadow(0 4px 12px rgba(232,133,43,0.4));
}
.orbit__om svg { width: 100%; height: 100%; display: block; }

.orbit__map { position: absolute; inset: 24%; }
.orbit__map .india-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}

.orbit__pins { position: absolute; inset: 0; z-index: 3; }
.map-pin {
  position: absolute; width: 15px; height: 15px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  animation: pin-bob 3s ease-in-out infinite;
}
.map-pin::after { content: ''; position: absolute; top: 4px; left: 4px; width: 7px; height: 7px; background: #fff; border-radius: 50%; }
.map-pin:nth-child(3) { animation-delay: .5s; }
.map-pin:nth-child(5) { animation-delay: 1s; }
.map-pin:nth-child(7) { animation-delay: 1.5s; }
@keyframes pin-bob {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(-2px, -2px); }
}
/* active pin: pop bigger + pulsing halo */
.map-pin.is-active {
  z-index: 5;
  animation: pin-pop .55s ease forwards;
}
@keyframes pin-pop {
  0% { transform: rotate(-45deg) scale(1); }
  55% { transform: rotate(-45deg) scale(1.9); }
  100% { transform: rotate(-45deg) scale(1.35); }
}
.map-pin.is-active::before {
  content: '';
  position: absolute; inset: -7px;
  border-radius: 50%;
  background: rgba(232,133,43,0.35);
  z-index: -1;
  animation: pin-halo 1.2s ease-out infinite;
}
@keyframes pin-halo {
  0% { transform: scale(.5); opacity: .8; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* white node dots on the ring */
.orbit__node {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.orbit__node--t { top: 17%; left: 50%; transform: translate(-50%, -50%); }
.orbit__node--b { top: 83%; left: 50%; transform: translate(-50%, -50%); }
.orbit__node--l { left: 17%; top: 50%; transform: translate(-50%, -50%); }
.orbit__node--r { left: 83%; top: 50%; transform: translate(-50%, -50%); }

/* thumbnails container revolves slowly clockwise around the map */
.orbit__thumbs {
  position: absolute; inset: 0;
  transform-origin: 50% 50%;
  animation: orbit-revolve 36s linear infinite;
}
/* circular photo thumbnails (clickable) positioned on the outer ring */
.orbit__thumb {
  position: absolute; width: 84px; height: 84px;
  transform: translate(-50%, -50%);
  padding: 0; border: none; background: none;
  cursor: pointer;
}
.orbit__thumb__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #e9d3b0;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: box-shadow .2s;
  /* counter-rotate at the same speed so the photos stay upright while revolving */
  animation: orbit-revolve-rev 36s linear infinite;
}
.orbit__thumb:hover .orbit__thumb__img { box-shadow: 0 0 0 4px rgba(232,133,43,0.5), 0 12px 28px rgba(0,0,0,0.25); }
/* pause the orbit on hover so a ball is easy to click */
.orbit:hover .orbit__thumbs,
.orbit:hover .orbit__thumb__img { animation-play-state: paused; }
.orbit__thumb--1 { left: 27%; top: 10%; }
.orbit__thumb--2 { left: 73%; top: 10%; }
.orbit__thumb--3 { left: 4%;  top: 50%; }
.orbit__thumb--4 { left: 96%; top: 50%; }
.orbit__thumb--5 { left: 27%; top: 90%; }
.orbit__thumb--6 { left: 73%; top: 90%; }
@keyframes orbit-revolve { to { transform: rotate(360deg); } }
@keyframes orbit-revolve-rev { to { transform: rotate(-360deg); } }

/* ---- Custom Group Plan ---- */
.group-band {
  background:
    radial-gradient(120% 120% at 85% 15%, rgba(232,133,43,0.55) 0%, transparent 55%),
    linear-gradient(120deg, #3a2c1d 0%, #5a3f22 55%, #c8821f 130%);
  color: #fff;
}
.group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.group__intro p { color: #f3e6d6; margin: 14px 0; font-size: 1.05rem; }
.group__intro .section-title { color: #fff; }
.form {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
  display: grid;
  gap: 14px;
}
.form__title { color: var(--ink); font-size: 20px; font-weight: 700; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1.5px solid #e7dccb;
  border-radius: 10px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fdfaf5;
}
.form input:focus,
.form textarea:focus,
.form select:focus { outline: none; border-color: var(--orange); background: #fff; }
.form textarea { resize: vertical; }
/* custom dropdown arrow */
.form select {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e8852b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.form select:invalid { color: #9a8870; }

/* ---- Gallery (varied-size mosaic — tightly packed, no gaps) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 182px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e9d3b0 center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.gallery-item img,
.gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item--video { background: #000; }
/* mosaic rhythm that tiles a 4-column grid completely, with variety in every band:
   top band = big(2x2) + tall + 2 small · bottom band = 2 tall + 2 wide */
.gallery-item:nth-child(8n+1) { grid-column: span 2; grid-row: span 2; } /* big */
.gallery-item:nth-child(8n+2) { grid-row: span 2; }                      /* tall */
.gallery-item:nth-child(8n+5) { grid-row: span 2; }                      /* tall */
.gallery-item:nth-child(8n+6) { grid-row: span 2; }                      /* tall */
.gallery-item:nth-child(8n+7) { grid-column: span 2; }                   /* wide */
.gallery-item:nth-child(8n+8) { grid-column: span 2; }                   /* wide */
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.12));
  transition: background .25s;
}
.gallery-item:hover::after { background: rgba(232,133,43,0.14); }
/* corner type badge */
.gallery-item__badge {
  position: absolute; top: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--orange);
  display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.gallery-item__badge--left { left: 14px; }
.gallery-item__badge--right { right: 14px; }
/* caption appears on hover */
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 14px 12px; color: #fff; font-size: 13px; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; }

/* PDF brochure tour card */
.tour-card__media--pdf {
  display: grid; place-items: center;
  background: linear-gradient(135deg, #c8821f, #e8a34a);
}
.tour-card__pdf-label {
  position: relative; z-index: 2;
  color: #fff; font-weight: 700; font-size: 15px;
  background: rgba(0,0,0,0.28); padding: 9px 18px; border-radius: 22px;
}
.tour-card__media--doc { cursor: pointer; }

/* Brochure / PDF viewer popup */
.doc-modal {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.doc-modal.is-open { display: flex; }
.doc-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(31,23,16,0.7);
  backdrop-filter: blur(3px);
}
.doc-modal__card {
  position: relative; z-index: 1;
  width: min(920px, 100%);
  height: min(90vh, 1100px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.doc-modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid #eee5d6;
  flex-shrink: 0;
}
.doc-modal__title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--ink); }
.doc-modal__actions { display: flex; align-items: center; gap: 10px; }
.doc-modal__dl { padding: 8px 14px; font-size: 13px; }
.doc-close {
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: #f0e6d8; color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.doc-close:hover { background: var(--orange); color: #fff; }
.doc-modal__body { flex: 1; background: #f3ece1; overflow: auto; }
.doc-modal__body iframe { width: 100%; height: 100%; border: 0; display: block; }
.doc-modal__imgwrap { min-height: 100%; display: flex; }
.doc-modal__imgwrap img { max-width: 100%; margin: auto; display: block; }

/* ---- Testimonials ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  margin: 0;
  box-shadow: 0 14px 34px rgba(0,0,0,0.07);
  border: 1px solid #f0e3d2;
}
.review__stars { color: #efa83a; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 18px; color: #4a3c2e; font-style: italic; line-height: 1.6; }
.review figcaption strong { display: block; color: var(--ink); }
.review figcaption span { font-size: 13px; color: var(--orange); }

/* ---- FAQ ---- */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid #f0e3d2;
  border-radius: 14px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 22px;
  font-family: inherit; font-size: 16px; font-weight: 600; color: var(--ink);
  text-align: left;
}
.faq__icon { color: var(--orange); font-size: 22px; transition: transform .25s; flex-shrink: 0; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq__item.is-open .faq__a { max-height: 240px; }
.faq__a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---- Contact ---- */
#contact { background: #fdf1de url('assets/contact-us.png') center / cover no-repeat; }
.contact { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: start; }
.contact__info {
  background: var(--dark-bar);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
}
.contact__info h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 20px; }
.contact__list { list-style: none; display: grid; gap: 18px; margin-bottom: 24px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: #e3d6c5; }
.contact__list li span { font-size: 18px; }
.contact__list a { color: #e3d6c5; text-decoration: none; }
.contact__list a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff; text-decoration: none; font-weight: 700;
  transition: background .2s;
}
.socials a:hover { background: var(--orange); }

/* ---- Footer (with background art) ---- */
.footer {
  position: relative;
  color: #d8c8b4;
  /* stretch the art to the footer so the full skyline (top) and temple (right) always show */
  background: #170d04 url('assets/footer.png') top center / 100% 100% no-repeat;
}
.fic-svg { width: 18px; height: 18px; flex-shrink: 0; }
.ic-line { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; }

/* main columns */
.footer__main { padding: 185px 0 56px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.95fr 1.35fr;
  align-items: start;
}
.footer__brand { padding-right: 30px; margin-top: 48px; }
.footer__logo { width: 92px; height: 92px; object-fit: contain; margin-bottom: 16px; }
.footer__brand p { color: #cbbba8; font-size: 15px; line-height: 1.7; max-width: 300px; }
.footer__socials { display: flex; gap: 12px; margin-top: 22px; }
.footer__socials a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: #fff;
  transition: background .2s, transform .15s;
}
.footer__socials a:hover { background: var(--orange); transform: translateY(-2px); }

/* link columns with divider + diamond */
.footer__col { padding: 4px 30px; position: relative; }
.footer__col + .footer__col::before,
.footer__reach::before {
  content: ''; position: absolute; left: 0; top: 6%; bottom: 6%;
  width: 1px; background: linear-gradient(transparent, rgba(232,133,43,0.35), transparent);
}
.footer__col + .footer__col::after,
.footer__reach::after {
  content: '✦'; position: absolute; left: -6px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 11px; opacity: .8;
}
.footer__col h4 {
  color: #fff; font-size: 19px; font-family: 'Playfair Display', serif; font-weight: 700;
  margin-bottom: 22px;
}
.footer__col h4::after {
  content: ''; display: block; width: 34px; height: 2px;
  background: var(--orange); border-radius: 2px; margin-top: 8px;
}
.footer__col a, .footer__reach-item {
  display: flex; align-items: center; gap: 12px;
  color: #d8c8b4; text-decoration: none; font-size: 15px;
  margin-bottom: 18px; transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }
.footer__col a .fic-svg { color: var(--orange); }

/* Reach Us: circular outlined icons */
.footer__reach a, .footer__reach-item { gap: 14px; margin-bottom: 20px; }
.footer__reach .ficon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(232,133,43,0.55);
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--orange);
}

/* bottom bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.10); }
.footer__bottom-grid {
  display: block;
  padding: 26px 0 36px;
  text-align: center;
}
.footer__legal { text-align: center; }
.footer__copy { color: #e8dccb; font-size: 14px; margin-bottom: 14px; }
.footer__diamond { color: var(--orange); margin-right: 8px; }
.footer__credits { font-size: 11.5px; color: #9a8870; line-height: 1.7; margin: 0 auto 8px; max-width: 940px; }
.footer__newsletter h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.footer__newsletter > p { color: #cbbba8; font-size: 14px; line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer__subscribe {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,133,43,0.45);
  border-radius: 12px; overflow: hidden; max-width: 360px;
}
.footer__subscribe input {
  flex: 1; min-width: 0; background: transparent; border: none;
  padding: 14px 16px; color: #fff; font-family: inherit; font-size: 14px;
}
.footer__subscribe input::placeholder { color: #9a8870; }
.footer__subscribe input:focus { outline: none; }
.footer__subscribe button {
  border: none; background: var(--orange); color: #fff;
  width: 54px; display: grid; place-items: center; cursor: pointer;
  transition: background .2s;
}
.footer__subscribe button:hover { background: var(--orange-dark); }
.footer__subscribe .fic-svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  /* on small screens the stretched art would distort — use a clean solid dark footer */
  .footer { background-image: none; }
  .footer__main { padding: 56px 0 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__col { padding: 4px 0; }
  .footer__col + .footer__col::before, .footer__reach::before,
  .footer__col + .footer__col::after, .footer__reach::after { display: none; }
  .footer__bottom-grid { padding: 22px 0 30px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--whatsapp);
  color: #fff; font-size: 26px;
  box-shadow: 0 10px 26px rgba(37,163,74,0.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---- Responsive (new sections) ---- */
@media (max-width: 1080px) {
  /* destinations: orbit on top, all cards in a 2-col grid below */
  .dest-layout { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: auto; grid-auto-flow: row; column-gap: 22px; row-gap: 22px; }
  /* reset ALL explicit placement (incl. the high-specificity :nth-child grid-row rules) so cards auto-flow */
  .dest-col--left .dcard, .dest-col--right .dcard,
  .dest-col--left .dcard:nth-child(1), .dest-col--left .dcard:nth-child(2),
  .dest-col--left .dcard:nth-child(3), .dest-col--left .dcard:nth-child(4),
  .dest-col--right .dcard:nth-child(1), .dest-col--right .dcard:nth-child(2),
  .dest-col--right .dcard:nth-child(3), .dest-col--right .dcard:nth-child(4),
  #destTop, #destBottom { grid-column: auto; grid-row: auto; }
  .orbit { grid-column: 1 / -1; grid-row: auto; order: -1; align-self: auto; justify-self: center; margin-bottom: 6px; }
}
@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .about, .group, .contact { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__badge { left: 0; }
  .section-title--left { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(8n+1), .gallery-item:nth-child(8n+2),
  .gallery-item:nth-child(8n+5), .gallery-item:nth-child(8n+6),
  .gallery-item:nth-child(8n+7), .gallery-item:nth-child(8n+8) { grid-column: auto; grid-row: auto; }
  /* destinations (mobile): orbit map on top + swipeable card carousel below */
  .dest-layout { display: flex; flex-direction: column; align-items: center; gap: 18px; }
  #destLeft, #destRight, #destTop, #destBottom { display: none; }
  .orbit { order: -1; width: min(440px, 84vw); }
  .dest-carousel { display: flex; }
  .dest-dots { display: flex; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about__gallery { gap: 14px; }
  .about__ring { width: 128px; height: 128px; }
  .about__ring strong { font-size: 32px; }
  .about__ring span { font-size: 11px; padding: 0 12px; }
}

/* ---- Place popup modal ---- */
.place-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.place-modal.is-open { display: flex; }
.place-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(31,23,16,0.6);
  backdrop-filter: blur(3px);
}
.place-modal__card {
  position: relative; z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  animation: pm-pop .25s ease;
}
@keyframes pm-pop {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.place-modal__media { height: 240px; background: #e9d3b0; }
.place-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.place-modal__body { padding: 22px 24px 26px; }
.place-modal__title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ink); }
.place-modal__loc { display: inline-block; color: var(--orange); font-weight: 600; font-size: 14px; margin: 4px 0 12px; }
.place-modal__desc { color: var(--muted); font-size: 15px; line-height: 1.6; }
.place-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  font-size: 22px; line-height: 1; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.place-modal__close:hover { background: #fff; }
