/* ─── Variables ─────────────────────────────────────────── */
:root {
  --primary:    #f9aa1d;
  --primary-dk: #d4880a;
  --secondary:  #ea1c46;
  --dark:       #1a0a00;
  --whatsapp:   #25D366;

  --bg:         #f8fafc;
  --bg-2:       #f1f5f9;
  --surface:    #ffffff;
  --surface-2:  #f8fafc;

  --text:       #111827;
  --text-dim:   #111827;
  --muted:      #111827;
  --border:     #e2e8f0;
  --border-2:   #cbd5e1;
  --white:      #ffffff;

  --r-sm:  6px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
  --t: all .25s ease;
  --max: 1280px;
  --font: 'Cabinet Grotesk', 'Space Grotesk', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); font-size: 17px; line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── Utils ─────────────────────────────────────────────── */
.container      { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white     { color: var(--white); }
.text-muted     { color: var(--muted); }
.text-center    { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.5rem; border-radius: 100px; font-weight: 700;
  font-size: .85rem; transition: var(--t); border: 2px solid transparent; cursor: pointer;
}
.btn--primary        { background: var(--primary); color: #1a0a00; }
.btn--primary:hover  { background: #ffbe45; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,170,29,.35); }
.btn--secondary      { background: var(--secondary); color: var(--white); }
.btn--secondary:hover{ opacity: .88; transform: translateY(-1px); }
.btn--white          { background: var(--white); color: var(--secondary); }
.btn--white:hover    { background: #fff8f8; transform: translateY(-1px); }
.btn--ghost          { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.3); }
.btn--ghost:hover    { background: rgba(255,255,255,.22); }
.btn--outline-dark   { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--outline-dark:hover { background: var(--bg-2); border-color: var(--text); }
.btn--outline-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--outline-white:hover{ background: rgba(255,255,255,.1); }
.btn--whatsapp       { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { opacity: .9; transform: translateY(-1px); }
.btn--link           { color: var(--secondary); font-weight: 700; padding: 0; }
.btn--link:hover     { text-decoration: underline; }
.btn--full { width: 100%; }
.btn--lg   { padding: .8rem 2rem; font-size: .95rem; }

/* ─── Badges ────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .2rem .65rem; border-radius: 100px; font-size: .7rem; font-weight: 700; }
.badge--red   { background: #fff0f3; color: var(--secondary); border: 1px solid #fecdd7; }
.badge--dark  { background: rgba(0,0,0,.5); color: var(--white); backdrop-filter: blur(4px); }
.badge--white { background: rgba(255,255,255,.9); color: var(--text); }

/* ─── Alerts ────────────────────────────────────────────── */
.alert { display: flex; align-items: center; gap: .5rem; padding: .85rem 1.1rem; border-radius: var(--r); margin-bottom: 1rem; font-weight: 600; font-size: .85rem; }
.alert--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert--error   { background: #fff0f3; color: #b91c1c; border: 1px solid #fecdd7; }

/* ─── Navbar ─────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; }

.top-bar { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; font-weight: 600; }
.top-bar__left  { display: flex; align-items: center; gap: 1.25rem; background: var(--primary); padding: .4rem 1.25rem; flex: 1; color: #1a0a00; }
.top-bar__left  i { font-size: .7rem; }
.top-bar__left  a:hover { opacity: .72; }
.top-bar__right { display: flex; align-items: center; gap: 1rem; background: var(--secondary); color: var(--white); padding: .4rem 1.25rem; }
.top-bar__right a { color: var(--white); }
.top-bar__right a:hover { opacity: .75; }

.main-nav { background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--t); }
.main-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; height: 68px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }

/* On desktop the drawer is an inline flex row pushed to the right */
.nav-drawer { margin-left: auto; display: flex; align-items: center; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-link  { padding: .45rem .85rem; border-radius: var(--r-sm); font-weight: 600; font-size: .88rem; color: var(--text-dim); transition: var(--t); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary-dk); background: #fffbeb; }
.nav-arrow { font-size: .65rem; margin-left: .15rem; opacity: .6; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + .6rem); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: .5rem; z-index: 200; border: 1px solid var(--border);
}
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-item { display: flex; align-items: center; gap: .65rem; padding: .65rem .9rem; border-radius: var(--r-sm); font-weight: 600; font-size: .85rem; color: var(--text-dim); transition: var(--t); }
.dropdown-item i { width: 16px; text-align: center; color: var(--primary-dk); }
.dropdown-item:hover { background: #fffbeb; color: var(--primary-dk); }
.dropdown-item--all { border-top: 1px solid var(--border); margin-top: .4rem; padding-top: .85rem; color: var(--secondary); font-weight: 700; }
.dropdown-item--all i { color: var(--secondary); }

.nav-cta  { display: flex; align-items: center; gap: .5rem; margin-left: .75rem; }
.nav-phone{ font-size: .8rem; padding: .45rem .9rem; }

/* Drawer-only elements: visible only in the mobile slide drawer */
.drawer-header,
.drawer-cta,
.drawer-footer,
.drawer-nav__label { display: none; }

/* Nav link icons: shown in mobile drawer only, hidden on desktop */
.nav-link-icon { display: none; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: .5rem; width: 40px; height: 40px; border-radius: 8px;
  background: transparent; border: none; cursor: pointer; transition: background .18s;
}
.hamburger:hover { background: rgba(249,170,29,.1); }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .28s ease, opacity .18s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
/* ─── Hero Slider ────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }

/* Slide backgrounds */
.hero__slides { position: absolute; inset: 0; }
.hero__slide  { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.6s ease; }
.hero__slide.active { opacity: 1; }

/* Gradient overlay — left dark for text, right lighter to show image */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(10,4,0,.82) 0%,
    rgba(10,4,0,.72) 45%,
    rgba(10,4,0,.35) 75%,
    rgba(10,4,0,.18) 100%);
}

/* Subtle dot-grid texture */
.hero__overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(249,170,29,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* Two-column hero layout: text left, cards right */
.hero__inner {
  position: relative; z-index: 2; padding: 7rem 1.25rem 5rem;
  display: flex; align-items: center; width: 100%;
}
.hero__content { flex: 0 0 auto; max-width: 560px; text-align: left; }
.hero__badge   { display: inline-flex; align-items: center; gap: .45rem; background: rgba(249,170,29,.15); border: 1px solid rgba(249,170,29,.3); color: var(--primary); font-size: .78rem; font-weight: 700; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.25rem; }
.hero__title   { font-size: clamp(2.5rem,5.5vw,4.5rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.hero__sub     { font-size: 1.6rem; font-weight: 600; color: var(--primary); display: block; }
.hero__desc    { color: rgba(255,255,255,.68); font-size: .95rem; max-width: 480px; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.hero__stats   { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.hero-stat__num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.hero-stat__lbl { display: block; font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

/* Destination card strip — fixed to bottom, horizontal */
.hero__dests {
  position: absolute; bottom: 2.5rem; right: 1.5rem;
  display: flex; flex-direction: row; gap: .75rem;
  z-index: 3;
}
.hero__dest {
  width: 170px; border-radius: 14px; overflow: hidden; cursor: pointer;
  border: 2px solid rgba(255,255,255,.12); transition: all .3s ease;
  background: rgba(0,0,0,.35); backdrop-filter: blur(8px);
}
.hero__dest.active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 6px 20px rgba(249,170,29,.25); }
.hero__dest:hover  { border-color: rgba(249,170,29,.55); transform: translateY(-4px); }
.hero__dest__img   { width: 100%; height: 70px; object-fit: cover; display: block; }
.hero__dest__lbl   { padding: .4rem .6rem; font-size: .65rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; gap: .35rem; }
.hero__dest__lbl i { color: var(--primary); font-size: .7rem; }

/* Dot nav */
.hero__dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .5rem; align-items: center;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
  background: transparent; cursor: pointer; padding: 0; transition: all .3s;
}
.hero__dot.active { background: var(--primary); border-color: var(--primary); width: 28px; border-radius: 5px; }

/* Progress bar on active slide */
.hero__progress {
  position: absolute; bottom: 0; left: 0; height: 3px; z-index: 3;
  background: var(--primary); width: 0%; transition: none;
}
.hero__progress.running { transition: width 2.5s linear; width: 100%; }

.hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 4; }
.hero__wave svg { width: 100%; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 60%, #1a0a00 100%);
  padding: 3.5rem 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #d97706;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(249,170,29,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__body { max-width: 680px; }
.page-hero h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight: 900; margin: .5rem 0 .6rem; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: .95rem; }
.hero-badge   { display: inline-flex; align-items: center; gap: .4rem; background: rgba(249,170,29,.15); border: 1px solid rgba(249,170,29,.3); color: var(--primary); font-size: .75rem; font-weight: 700; padding: .35rem .9rem; border-radius: 100px; margin-bottom: .65rem; }

/* ─── Trust Bar ──────────────────────────────────────────── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: .9rem 0; }
.trust-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.25rem; font-size: .78rem; color: var(--text-dim); font-weight: 600; }
.trust-bar__inner span { display: flex; align-items: center; gap: .4rem; }
.trust-bar__inner i { color: var(--primary-dk); }

/* ─── Sections ───────────────────────────────────────────── */
.section        { padding: 4.5rem 0; }
.section--light { background: var(--bg-2); }
.section--dark  { background: #1a0a00; }

/* Popular Packages — scenic background */
.section--packages {
  position: relative; overflow: hidden;
  background-color: #f0ebe0;
  background-image:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,248,235,0.88)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=60&fit=crop");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary-dk);
  background: linear-gradient(90deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fde68a;
  border-radius: 99px;
  padding: .32rem .9rem;
  margin-bottom: .75rem;
}
.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(249,170,29,.25);
}
.section-title  { font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 900; color: var(--text); line-height: 1.18; margin-bottom: .65rem; }
.section-desc   { color: var(--muted); max-width: 500px; margin: 0 auto; font-size: .9rem; }
.section-footer { text-align: center; margin-top: 2.25rem; }
.section--dark .section-title { color: var(--white); }
.section--dark .section-eyebrow { background: rgba(249,170,29,.15); border-color: rgba(249,170,29,.35); color: #fbbf24; }
.section--dark .section-eyebrow::before { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251,191,36,.25); }
.section-eyebrow--dark { background: rgba(249,170,29,.15) !important; border-color: rgba(249,170,29,.35) !important; color: #fbbf24 !important; }
.section-eyebrow--dark::before { background: #fbbf24 !important; box-shadow: 0 0 0 3px rgba(251,191,36,.25) !important; }

/* ─── Category Cards ─────────────────────────────────────── */
/* ── Category Cards ──────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cat-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
  text-decoration: none;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.2), 0 0 0 2.5px rgba(249,170,29,.45);
}
.cat-card__img { position: absolute; inset: 0; }
.cat-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-card__img img { transform: scale(1.09); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.55) 40%,
    rgba(0,0,0,.18) 70%,
    rgba(0,0,0,.04) 100%
  );
  transition: opacity .35s ease;
}
.cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.5rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover .cat-card__body { transform: translateY(-5px); }
.cat-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(249,170,29,.22);
  border: 1.5px solid rgba(249,170,29,.45);
  display: flex; align-items: center; justify-content: center;
  color: #f9aa1d;
  font-size: 1.05rem;
  margin-bottom: .8rem;
  backdrop-filter: blur(6px);
}
.cat-card__title {
  font-size: 1.28rem; font-weight: 900;
  color: #fff; line-height: 1.25;
  margin-bottom: .3rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.cat-card__desc {
  color: rgba(255,255,255,.72);
  font-size: .8rem; line-height: 1.55;
  margin-bottom: .9rem;
}
.cat-card__link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #f9aa1d; font-size: .8rem; font-weight: 800;
  border-bottom: 1.5px solid rgba(249,170,29,.4);
  padding-bottom: .15rem;
  transition: gap .25s ease, border-color .25s ease;
}
.cat-card:hover .cat-card__link { gap: .75rem; border-color: #f9aa1d; }

/* ─── Tour Cards ─────────────────────────────────────────── */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(256px,1fr)); gap: 1.1rem; }
.tour-card  { display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--t); }
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fcd34d; }
.tour-card__img { position: relative; height: 192px; overflow: hidden; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-card__img img { transform: scale(1.07); }
.tour-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary-dk); background: linear-gradient(135deg,#fffbeb,#fef3c7); }
.tour-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent 55%); }
.tour-card__badges { position: absolute; top: .65rem; left: .65rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.tour-card__bottom { position: absolute; bottom: .65rem; left: .65rem; right: .65rem; display: flex; justify-content: space-between; }
.tour-card__body { padding: .9rem; flex: 1; display: flex; flex-direction: column; }
.tour-card__cat  { font-size: .68rem; font-weight: 800; color: var(--primary-dk); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; display: flex; align-items: center; gap: .3rem; }
.tour-card__title{ font-weight: 800; font-size: .9rem; color: var(--text); line-height: 1.35; flex: 1; margin-bottom: .35rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tour-card:hover .tour-card__title { color: var(--primary-dk); }
.tour-card__dests{ font-size: .72rem; color: var(--muted); margin-bottom: .75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: .3rem; }
.tour-card__footer{ display: flex; align-items: center; justify-content: space-between; padding-top: .65rem; border-top: 1px solid var(--border); margin-top: auto; }
.tour-card__footer small { display: block; font-size: .65rem; color: var(--muted); }
.tour-card__price   { font-size: 1.05rem; font-weight: 900; color: var(--text); }
.tour-card__price-na{ font-size: .75rem; color: var(--muted); }
.tour-card__arrow   { width: 32px; height: 32px; border-radius: 50%; background: #fffbeb; color: var(--primary-dk); border: 1.5px solid #fcd34d; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: var(--t); }
.tour-card:hover .tour-card__arrow { background: var(--primary); border-color: var(--primary); color: #1a0a00; }

/* ─── Feature Cards Section ─────────────────────────────── */
.feat-section {
  background: #fef9f0;
  position: relative;
  overflow: hidden;
}
.feat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,119,6,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,119,6,.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 38%, rgba(249,170,29,.13) 0%, transparent 48%),
    radial-gradient(circle at 82% 62%, rgba(249,170,29,.09) 0%, transparent 48%),
    radial-gradient(circle at 50% 10%, rgba(234,88,12,.05) 0%, transparent 40%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
}
.feat-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Ccircle cx='24' cy='24' r='1.5' fill='%23d97706' fill-opacity='.18'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  pointer-events: none;
}
.feat-section .section-eyebrow { background: linear-gradient(90deg,#fff7ed,#ffedd5); border-color: #fed7aa; }
.feat-section .section-title   { color: var(--text); }
.feat-section .section-desc    { color: var(--muted); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem 1.75rem;
  transition: var(--t);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }

.feat-card__icon-wrap { margin-bottom: 1.25rem; }
.feat-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.feat-card__title { font-size: 1.02rem; font-weight: 900; color: var(--text); margin-bottom: .6rem; line-height: 1.3; }
.feat-card__desc  { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.1rem; }
.feat-card__line  { height: 3px; border-radius: 99px; width: 44px; }

/* colour variants */
.feat-card--gold  { border-top: 3px solid #f9aa1d; }
.feat-card--gold  .feat-card__icon { background: linear-gradient(135deg,#f9aa1d,#f97316); }
.feat-card--gold  .feat-card__line { background: linear-gradient(90deg,#f9aa1d,#f97316); }
.feat-card--gold:hover  { border-color: #f9aa1d; box-shadow: 0 16px 40px rgba(249,170,29,.15); }

.feat-card--red   { border-top: 3px solid #ea1c46; }
.feat-card--red   .feat-card__icon { background: linear-gradient(135deg,#ea1c46,#be123c); }
.feat-card--red   .feat-card__line { background: linear-gradient(90deg,#ea1c46,#be123c); }
.feat-card--red:hover   { border-color: #ea1c46; box-shadow: 0 16px 40px rgba(234,28,70,.14); }

.feat-card--blue  { border-top: 3px solid #3b82f6; }
.feat-card--blue  .feat-card__icon { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.feat-card--blue  .feat-card__line { background: linear-gradient(90deg,#3b82f6,#1d4ed8); }
.feat-card--blue:hover  { border-color: #3b82f6; box-shadow: 0 16px 40px rgba(59,130,246,.14); }

.feat-card--green { border-top: 3px solid #22c55e; }
.feat-card--green .feat-card__icon { background: linear-gradient(135deg,#22c55e,#15803d); }
.feat-card--green .feat-card__line { background: linear-gradient(90deg,#22c55e,#15803d); }
.feat-card--green:hover { border-color: #22c55e; box-shadow: 0 16px 40px rgba(34,197,94,.14); }

.feat-card--orange { border-top: 3px solid #f97316; }
.feat-card--orange .feat-card__icon { background: linear-gradient(135deg,#f97316,#c2410c); }
.feat-card--orange .feat-card__line { background: linear-gradient(90deg,#f97316,#c2410c); }
.feat-card--orange:hover { border-color: #f97316; box-shadow: 0 16px 40px rgba(249,115,22,.14); }

.feat-card--purple { border-top: 3px solid #a855f7; }
.feat-card--purple .feat-card__icon { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.feat-card--purple .feat-card__line { background: linear-gradient(90deg,#a855f7,#7c3aed); }
.feat-card--purple:hover { border-color: #a855f7; box-shadow: 0 16px 40px rgba(168,85,247,.14); }

/* ─── Home About Section ─────────────────────────────────── */
.home-about { background: #fff; }
.home-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.home-about__img-col { position: relative; }
.home-about__img-wrap { position: relative; border-radius: var(--r-xl); overflow: visible; }
.home-about__img { width: 100%; border-radius: var(--r-xl); display: block; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.home-about__badge { position: absolute; bottom: -1.25rem; left: -1.25rem; background: var(--primary); color: #fff; border-radius: var(--r-xl); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; box-shadow: 0 8px 24px rgba(249,170,29,.35); min-width: 140px; }
.home-about__badge-num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.home-about__badge-num sup { font-size: 1rem; font-weight: 700; }
.home-about__badge-lbl { font-size: .72rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .04em; }
.home-about__badge2 { position: absolute; top: 1rem; right: -1rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 99px; padding: .45rem 1rem; font-size: .72rem; font-weight: 800; color: var(--text); box-shadow: var(--shadow-sm); white-space: nowrap; }
.home-about__badge2 i { color: var(--primary-dk); margin-right: .3rem; }
.home-about__title { font-size: clamp(1.55rem,3vw,2.4rem); font-weight: 900; color: var(--text); line-height: 1.2; margin: .35rem 0 1.1rem; }
.home-about__lead { font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: .85rem; }
.home-about__body { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: .75rem; }
.home-about__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.home-about__pill { display: inline-flex; align-items: center; gap: .4rem; background: #fffbeb; border: 1.5px solid #fde68a; color: var(--primary-dk); border-radius: 99px; padding: .35rem .9rem; font-size: .76rem; font-weight: 700; }

/* ─── Why Us ─────────────────────────────────────────────── */
.section--why { background: linear-gradient(135deg, #fffbeb 0%, #fff8f0 50%, #fef3c7 100%); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; }
.why-card2 { background: var(--white); border: 1.5px solid #fde68a; border-radius: var(--r-xl); padding: 1.75rem 1.5rem; transition: var(--t); text-align: center; }
.why-card2:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(249,170,29,.18); transform: translateY(-3px); }
.why-card2__icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,#f9aa1d,#f97316); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 1rem; box-shadow: 0 4px 14px rgba(249,170,29,.3); }
.why-card2__title { font-weight: 900; font-size: 1rem; color: var(--text); margin-bottom: .55rem; }
.why-card2__desc { color: var(--muted); font-size: .84rem; line-height: 1.6; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem; transition: var(--t); }
.why-card:hover { border-color: #fcd34d; box-shadow: var(--shadow); }
.why-card__icon  { width: 44px; height: 44px; border-radius: var(--r); background: #fffbeb; color: var(--primary-dk); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .85rem; }
.why-card__title { font-weight: 800; font-size: .95rem; color: var(--text); margin-bottom: .4rem; }
.why-card__desc  { color: var(--muted); font-size: .83rem; line-height: 1.55; }

/* ─── About: Experience & Overview ──────────────────────── */
.about-exp-section  { background: #fff; }
.about-exp-inner    { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: flex-start; }
.about-exp-title    { font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 900; color: var(--text); line-height: 1.22; margin: .4rem 0 .85rem; }
.about-exp-lead     { font-size: .92rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.about-exp-bullets  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.about-exp-bullets li { display: flex; align-items: flex-start; gap: .75rem; font-size: .86rem; color: var(--text-dim); line-height: 1.65; }
.about-exp-bullets li i { color: #22c55e; font-size: .88rem; flex-shrink: 0; margin-top: .18rem; }
.about-exp-img-col  { position: sticky; top: 100px; }
.about-exp-img-wrap { position: relative; }
.about-exp-img      { width: 100%; border-radius: var(--r-xl); display: block; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; object-fit: cover; }
.about-exp-badge    { position: absolute; bottom: 1.25rem; left: -1.25rem; background: linear-gradient(135deg,#f9aa1d,#f97316); color: #fff; border-radius: var(--r-xl); padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem; box-shadow: 0 8px 24px rgba(249,170,29,.35); }
.about-exp-badge i  { font-size: 1.4rem; }
.about-exp-badge strong { display: block; font-size: .88rem; font-weight: 900; }
.about-exp-badge small  { font-size: .7rem; opacity: .85; }

/* Why Choose Us (About page – dark overlay section) */
.about-wcu-section  { position: relative; overflow: hidden; padding: 5rem 0; }
.about-wcu-bg       { position: absolute; inset: 0; }
.about-wcu-bg img   { width: 100%; height: 100%; object-fit: cover; }
.about-wcu-overlay  { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,15,40,.93) 0%, rgba(30,27,75,.88) 100%); }
.about-wcu-inner    { position: relative; z-index: 2; }

.about-wcu-header   { text-align: center; margin-bottom: 3rem; }
.about-wcu-eyebrow  { display: inline-flex; align-items: center; gap: .45rem; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: #f9aa1d; background: rgba(249,170,29,.12); border: 1px solid rgba(249,170,29,.3); border-radius: 99px; padding: .3rem .9rem; margin-bottom: .85rem; }
.about-wcu-title    { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.18; margin-bottom: .65rem; }
.about-wcu-title span { color: #f9aa1d; }
.about-wcu-sub      { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.about-wcu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 3rem; }

.wcu-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 1.6rem 1.4rem;
  backdrop-filter: blur(6px);
  transition: var(--t);
}
.wcu-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }

.wcu-card__icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; flex-shrink: 0; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.wcu-card__icon--gold   { background: linear-gradient(135deg,#f9aa1d,#f97316); }
.wcu-card__icon--red    { background: linear-gradient(135deg,#ea1c46,#be123c); }
.wcu-card__icon--blue   { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.wcu-card__icon--orange { background: linear-gradient(135deg,#f97316,#c2410c); }
.wcu-card__icon--green  { background: linear-gradient(135deg,#22c55e,#15803d); }
.wcu-card__icon--purple { background: linear-gradient(135deg,#a855f7,#7c3aed); }

.wcu-card__body h3 { font-size: .92rem; font-weight: 900; color: #fff; margin-bottom: .4rem; line-height: 1.3; }
.wcu-card__body p  { font-size: .81rem; color: rgba(255,255,255,.62); line-height: 1.65; margin: 0; }

.about-wcu-stats { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl); padding: 1.5rem 2rem; backdrop-filter: blur(6px); flex-wrap: wrap; }
.wcu-stat { text-align: center; padding: .5rem 2rem; }
.wcu-stat span  { display: block; font-size: 1.9rem; font-weight: 900; color: #f9aa1d; line-height: 1; }
.wcu-stat small { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-top: .2rem; display: block; }
.wcu-stat-div   { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

@media (max-width: 900px) { .about-wcu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .about-wcu-grid { grid-template-columns: 1fr; } .wcu-stat-div { display: none; } .wcu-stat { padding: .5rem 1rem; } }

/* ─── About Page ─────────────────────────────────────────── */
.about-hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,15,40,.82) 0%, rgba(10,15,40,.65) 100%); }
.about-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.about-hero__inner { position: relative; z-index: 2; text-align: center; padding: 5rem 0 4rem; }
.about-hero__logo-wrap { margin-bottom: 1.5rem; }
.about-hero__logo { height: 90px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }
.about-hero__eyebrow { display: inline-flex; align-items: center; gap: .45rem; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); background: rgba(249,170,29,.12); border: 1px solid rgba(249,170,29,.3); border-radius: 99px; padding: .3rem .9rem; margin-bottom: 1rem; }
.about-hero__title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: .85rem; }
.about-hero__title span { color: var(--primary); }
.about-hero__desc { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 2rem; line-height: 1.7; }
.about-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Stats */
.about-stats-section { background: #fff; }
.about-stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
.astat { text-align: center; padding: 1.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-xl); background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: var(--t); }
.astat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.astat__icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; margin: 0 auto .85rem; }
.astat__icon--gold   { background: linear-gradient(135deg,#f9aa1d,#f97316); }
.astat__icon--red    { background: linear-gradient(135deg,#ea1c46,#be123c); }
.astat__icon--blue   { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.astat__icon--green  { background: linear-gradient(135deg,#22c55e,#15803d); }
.astat__icon--purple { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.astat__num { display: block; font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: .25rem; }
.astat__lbl { display: block; font-size: .82rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.astat__sub { font-size: .72rem; color: var(--muted); margin: 0; }

/* Story */
.about-story-section { background: #fff; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story-img-wrap { position: relative; }
.about-story-img { width: 100%; border-radius: var(--r-xl); display: block; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-story-float { position: absolute; background: #fff; border-radius: var(--r-xl); padding: .75rem 1rem; display: flex; align-items: center; gap: .6rem; box-shadow: var(--shadow); font-size: .78rem; font-weight: 700; color: var(--text); }
.about-story-float i { font-size: 1.1rem; }
.about-story-float--tl { top: -1rem; left: -1rem; }
.about-story-float--tl i { color: #f9aa1d; }
.about-story-float--br { bottom: -1rem; right: -1rem; }
.about-story-float--br i { color: #ea1c46; }
.about-story-float span { line-height: 1.3; }
.about-story-title { font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 900; color: var(--text); line-height: 1.2; margin: .4rem 0 1rem; }
.about-story-lead  { font-size: .98rem; font-weight: 600; color: var(--text); line-height: 1.7; margin-bottom: .85rem; }
.about-story-body  { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }
.about-story-pills { display: flex; flex-direction: column; gap: .45rem; margin-top: 1.25rem; }
.about-story-pills span { display: flex; align-items: center; gap: .55rem; font-size: .83rem; font-weight: 600; color: var(--text); }
.about-story-pills span i { color: #22c55e; font-size: .8rem; }

/* Horizontal Timeline */
.about-htl-section {
  position: relative;
  background: linear-gradient(160deg, #fffbf0 0%, #fef3c7 40%, #fff7ed 70%, #fdf4e7 100%);
  overflow: hidden;
}
.about-htl-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23f9aa1d' fill-opacity='.18'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}
.about-htl-section::after {
  content: '\f5a0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -2rem; bottom: -2rem;
  font-size: 18rem;
  color: rgba(249,170,29,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-htl { overflow-x: auto; padding-bottom: 1.5rem; position: relative; }
.about-htl__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 900px;
  padding: 2rem 0 1rem;
}
.htl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.htl-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 3px solid rgba(255,251,240,.9); z-index: 2; flex-shrink: 0;
  box-shadow: 0 0 0 4px;
}
.htl-dot--gold   { background: #f9aa1d; box-shadow: 0 0 0 5px rgba(249,170,29,.3); }
.htl-dot--red    { background: #ea1c46; box-shadow: 0 0 0 5px rgba(234,28,70,.25); }
.htl-dot--blue   { background: #3b82f6; box-shadow: 0 0 0 5px rgba(59,130,246,.25); }
.htl-dot--orange { background: #f97316; box-shadow: 0 0 0 5px rgba(249,115,22,.25); }
.htl-dot--green  { background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.25); }
.htl-dot--purple { background: #a855f7; box-shadow: 0 0 0 5px rgba(168,85,247,.25); }

.htl-connector {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f9aa1d, #f97316, #ea1c46, #3b82f6, #22c55e, #a855f7);
  z-index: 1;
  opacity: .55;
  border-radius: 2px;
}
.htl-connector--last { display: none; }

.htl-card {
  margin-top: 1.5rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(249,170,29,.2);
  border-radius: var(--r-xl);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(249,170,29,.1), 0 1px 4px rgba(0,0,0,.06);
  transition: var(--t);
  width: 90%;
}
.htl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(249,170,29,.18), 0 2px 8px rgba(0,0,0,.08);
  border-color: rgba(249,170,29,.45);
  background: #fff;
}
.htl-year {
  display: inline-block;
  background: linear-gradient(135deg, #f9aa1d, #f97316);
  color: #fff; font-size: .68rem; font-weight: 900;
  padding: .22rem .8rem; border-radius: 99px;
  margin-bottom: .6rem; letter-spacing: .06em;
  box-shadow: 0 2px 8px rgba(249,170,29,.35);
}
.htl-card h3 { font-size: .9rem; font-weight: 900; color: #1a0a00; margin-bottom: .4rem; }
.htl-card p  { font-size: .78rem; color: #78350f; line-height: 1.65; margin: 0; }

/* Mission Vision Values */
.about-mvv-section { background: #fff; }
.about-mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.mvv-card { border-radius: var(--r-xl); padding: 2.25rem 1.75rem; position: relative; overflow: hidden; }
.mvv-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; opacity: .08; }
.mvv-card--mission { background: linear-gradient(145deg,#fff7ed,#ffedd5); border: 1.5px solid #fed7aa; }
.mvv-card--mission::before { background: #f97316; }
.mvv-card--mission .mvv-card__icon { background: linear-gradient(135deg,#f97316,#ea580c); }
.mvv-card--vision  { background: linear-gradient(145deg,#eff6ff,#dbeafe); border: 1.5px solid #bfdbfe; }
.mvv-card--vision::before  { background: #3b82f6; }
.mvv-card--vision  .mvv-card__icon { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.mvv-card--values  { background: linear-gradient(145deg,#f0fdf4,#dcfce7); border: 1.5px solid #bbf7d0; }
.mvv-card--values::before  { background: #22c55e; }
.mvv-card--values  .mvv-card__icon { background: linear-gradient(135deg,#22c55e,#15803d); }
.mvv-card__icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; margin-bottom: 1.1rem; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.mvv-card h3 { font-size: 1.1rem; font-weight: 900; color: var(--text); margin-bottom: .65rem; }
.mvv-card p  { font-size: .87rem; color: var(--text-dim); line-height: 1.75; margin: 0; }

/* Why Choose (About page) */
.about-why-section { background: var(--bg); }
.about-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.25rem; }
.about-why-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 1.75rem 1.5rem; position: relative; transition: var(--t); }
.about-why-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(249,170,29,.15); transform: translateY(-3px); }
.about-why-card__num { position: absolute; top: 1rem; right: 1rem; font-size: 2rem; font-weight: 900; color: var(--border); line-height: 1; }
.about-why-card__icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg,#f9aa1d,#f97316); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .9rem; box-shadow: 0 4px 14px rgba(249,170,29,.3); }
.about-why-card h3 { font-size: .95rem; font-weight: 900; color: var(--text); margin-bottom: .45rem; }
.about-why-card p  { font-size: .83rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* About CTA */
.about-cta-section {
  position: relative; overflow: hidden;
  display: flex; align-items: center; min-height: 560px;
}
.about-cta-bg { position: absolute; inset: 0; }
.about-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,8,30,.92) 0%, rgba(20,10,50,.85) 60%, rgba(5,8,30,.92) 100%);
}
.about-cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  filter: blur(70px);
}
.about-cta-orb--1 { width: 400px; height: 400px; background: rgba(249,170,29,.12); top: -80px; left: -80px; }
.about-cta-orb--2 { width: 350px; height: 350px; background: rgba(234,28,70,.1); bottom: -60px; right: -60px; }

.about-cta-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 4.5rem 0 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.about-cta-pills {
  display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2rem;
}
.about-cta-pills span {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px; padding: .32rem .9rem;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
}
.about-cta-pills span i { color: #f9aa1d; font-size: .7rem; }

.about-cta-logo { margin-bottom: 1.25rem; }
.about-cta-logo img { height: 72px; filter: drop-shadow(0 4px 20px rgba(0,0,0,.5)); }

.about-cta-title {
  font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.about-cta-desc {
  font-size: .95rem; color: rgba(255,255,255,.65);
  max-width: 500px; line-height: 1.75; margin-bottom: 2.25rem;
}

.about-cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.about-cta-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .85rem 1.75rem; border-radius: 14px;
  font-family: inherit; cursor: pointer; text-decoration: none;
  border: none; transition: all .25s; min-width: 180px;
}
.about-cta-btn i { font-size: 1.15rem; flex-shrink: 0; }
.about-cta-btn span { display: flex; flex-direction: column; text-align: left; }
.about-cta-btn span small { font-size: .65rem; opacity: .8; line-height: 1; margin-bottom: .1rem; font-weight: 600; }
.about-cta-btn span { font-size: .9rem; font-weight: 800; line-height: 1.2; }

.about-cta-btn--primary {
  background: linear-gradient(135deg, #f9aa1d, #f97316);
  color: #fff; box-shadow: 0 6px 24px rgba(249,170,29,.45);
}
.about-cta-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(249,170,29,.55); }

.about-cta-btn--outline {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; backdrop-filter: blur(6px);
}
.about-cta-btn--outline:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }

.about-cta-btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.about-cta-btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }

.about-cta-strip {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px; padding: .7rem 2rem; backdrop-filter: blur(6px);
}
.about-cta-strip-item { display: flex; align-items: center; gap: .5rem; padding: 0 1.25rem; font-size: .8rem; color: rgba(255,255,255,.7); }
.about-cta-strip-item i { color: #f9aa1d; font-size: .78rem; }
.about-cta-strip-div { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ─── Testimonials ───────────────────────────────────────── */
.testi-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: #06080f;
}
.testi-section__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.testi-section__bg img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.testi-section__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6,8,15,.92) 0%,
    rgba(6,8,15,.80) 40%,
    rgba(6,8,15,.88) 80%,
    rgba(6,8,15,.97) 100%);
  pointer-events: none;
}
.testi-section .section-header { position: relative; }
.testi-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  margin: 2rem 0 2.5rem; position: relative;
}
.testi-trust-bar__item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .8rem;
}
.testi-trust-bar__item i { color: #f9aa1d; font-size: .9rem; }
.testi-trust-bar__divider { width: 1px; height: 18px; background: rgba(255,255,255,.15); }

/* marquee */
.testi-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: testi-scroll 40s linear infinite;
}
.testi-marquee-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.4rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow .3s ease, border-color .3s ease;
  cursor: default;
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(249,170,29,.3);
  border-color: rgba(249,170,29,.3);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: .8rem; right: 1.2rem;
  font-size: 5rem; line-height: 1;
  color: rgba(249,170,29,.1);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-stars {
  display: flex; gap: 3px;
  margin-bottom: .9rem;
}
.testi-stars i {
  color: #f9aa1d;
  font-size: .8rem;
  filter: drop-shadow(0 0 4px rgba(249,170,29,.7));
}
.testi-text {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.25rem;
}
.testi-tour-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(249,170,29,.12);
  border: 1px solid rgba(249,170,29,.25);
  color: #f9aa1d;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.testi-tour-pill i { font-size: .62rem; }
.testi-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(249,170,29,.22);
}
.testi-author strong { display: block; color: var(--white); font-size: .87rem; font-weight: 700; }
.testi-author small  { color: rgba(255,255,255,.45); font-size: .71rem; display: flex; align-items: center; gap: .3rem; margin-top: .12rem; }
.testi-author small i { color: rgba(249,170,29,.5); font-size: .62rem; }
@media(max-width:640px){
  .testi-trust-bar { gap: 1rem; }
  .testi-trust-bar__divider { display: none; }
  .testi-card { width: 260px; }
}

/* ─── CTA Band ───────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #1a0a00, #3d1a00); padding: 4rem 0; }
.cta-band__inner { text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); font-weight: 900; color: var(--white); margin-bottom: .65rem; }
.cta-band p  { color: rgba(255,255,255,.6); font-size: .93rem; max-width: 480px; margin: 0 auto 1.75rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background-color: var(--bg-2);
  background-image: url('/images/world-map.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #1f2937;
}

/* Stats Strip */
.footer-stats { background: rgba(255,255,255,0.82); border-bottom: 1px solid var(--border); backdrop-filter: blur(2px); }
.footer-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fstat { text-align: center; padding: 2rem 1rem; border-right: 1px solid var(--border); position: relative; }
.fstat:last-child { border-right: none; }
.fstat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary); transition: width .3s ease; border-radius: 2px; }
.fstat:hover::after { width: 40%; }
.fstat__icon { font-size: 1.3rem; color: var(--primary); margin-bottom: .5rem; }
.fstat__num { display: block; font-size: 2rem; font-weight: 900; color: #111827; line-height: 1; margin-bottom: .3rem; }
.fstat__lbl { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; color: #374151; font-weight: 700; }

/* CTA Band */
.footer-cta-wrap { padding: 2.5rem 0; }
.footer-cta { background: linear-gradient(135deg, #d4880a 0%, var(--primary) 35%, #f07818 60%, var(--secondary) 100%); border-radius: var(--r-xl); padding: 2.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.footer-cta__deco { position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); font-size: 8rem; color: rgba(255,255,255,.06); pointer-events: none; line-height: 1; }
.footer-cta__pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }
.footer-cta__pills span { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.9); background: rgba(255,255,255,.15); border-radius: 100px; padding: .2rem .65rem; display: flex; align-items: center; gap: .3rem; }
.footer-cta__pills span i { font-size: .6rem; }
.footer-cta__heading { font-size: 1.65rem; font-weight: 900; color: var(--white); line-height: 1.2; }
.footer-cta__heading span { opacity: .85; }
.footer-cta__sub { color: rgba(255,255,255,.75); font-size: .82rem; margin-top: .4rem; }
.footer-cta__actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.footer-cta__actions .btn--white { box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* Main Grid */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 2.5rem; border-top: 1px solid var(--border); }
.footer-brand__desc { color: #1f2937; font-size: 1.03rem; line-height: 1.75; margin: 1rem 0 1.25rem; }
.footer-logo { margin-bottom: .5rem; }

.footer-socials { display: flex; gap: .5rem; margin-bottom: 1.25rem; }
.social-icon { width: 38px; height: 38px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--t); font-size: .85rem; }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.social-icon--fb { background: #1877F2; }
.social-icon--yt { background: #FF0000; }
.social-icon--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon--wa { background: var(--whatsapp); }

.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.footer-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .86rem; font-weight: 700; color: var(--primary-dk); border: 1px solid rgba(249,170,29,.35); background: rgba(249,170,29,.1); border-radius: 100px; padding: .25rem .65rem; }

.footer-col__title { font-size: .86rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: #111827; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.footer-col__title::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--primary); border-radius: 2px; flex-shrink: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #1f2937; font-size: 1.03rem; transition: var(--t); display: flex; align-items: center; gap: .5rem; }
.footer-links a i { width: 14px; font-size: .91rem; color: var(--primary-dk); flex-shrink: 0; }
.footer-links a:hover { color: var(--primary-dk); transform: translateX(4px); }

.footer-contact-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: .8rem; }
.footer-contact-list li a { display: flex; align-items: flex-start; gap: .8rem; }
.contact-icon { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(249,170,29,.12); border: 1px solid rgba(249,170,29,.2); color: var(--primary-dk); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .91rem; }
.footer-contact-list small { display: block; font-size: .81rem; text-transform: uppercase; letter-spacing: .06em; color: #374151; margin-bottom: .1rem; }
.footer-contact-list strong { display: block; font-size: 1.01rem; color: #111827; transition: var(--t); }
.footer-contact-list a:hover strong { color: var(--primary-dk); }

/* Destinations */
.footer-destinations { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-destinations__inner { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.footer-destinations__label { font-size: .86rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #374151; flex-shrink: 0; display: flex; align-items: center; gap: .35rem; white-space: nowrap; }
.footer-destinations__label i { color: var(--primary-dk); }
.footer-destinations__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.dest-tag { font-size: .93rem; font-weight: 600; padding: .28rem .8rem; border-radius: 100px; border: 1px solid var(--border-2); color: #1f2937; background: var(--white); transition: var(--t); }
.dest-tag:hover { color: var(--primary-dk); border-color: rgba(249,170,29,.45); background: rgba(249,170,29,.08); transform: translateY(-1px); }

/* Bottom Bar */
.footer-bottom { background: rgba(255,255,255,0.88); border-top: 1px solid var(--border); backdrop-filter: blur(2px); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; padding-bottom: 1.1rem; font-size: .93rem; color: #374151; flex-wrap: wrap; }
.footer-bottom__right { display: flex; align-items: center; gap: .3rem; }
.footer-bottom__inner i { color: var(--secondary); }

.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--t); font-size: 1.4rem; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ─── Sidebar ────────────────────────────────────────────── */
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.enquiry-cta-btn { font-size: 1rem; padding: .9rem 1.5rem; letter-spacing: .01em; }
.enquiry-cta-note { text-align: center; font-size: .72rem; color: var(--muted); margin-top: .65rem; display: flex; align-items: center; justify-content: center; gap: .3rem; }
.enquiry-cta-note i { color: #f9aa1d; font-size: .68rem; }
.sidebar-box__title { display: flex; align-items: center; gap: .45rem; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--text); padding: .9rem 1.1rem; border-bottom: 1px solid var(--border); }
.sidebar-box__accent { width: 3px; height: 18px; border-radius: 3px; background: var(--primary); display: inline-block; flex-shrink: 0; }
.sidebar-box__accent--red { background: var(--secondary); }

.sidebar-list { padding: .5rem; }
.sidebar-item { display: flex; align-items: center; justify-content: space-between; padding: .6rem .8rem; border-radius: var(--r-sm); font-size: .84rem; font-weight: 600; color: var(--text-dim); transition: var(--t); gap: .5rem; }
.sidebar-item:hover { background: #fffbeb; color: #92400e; }
.sidebar-item--active { background: var(--primary) !important; color: #1a0a00 !important; }
.sidebar-item--active-red { background: var(--secondary) !important; color: var(--white) !important; }
.sidebar-item--radio { justify-content: flex-start; gap: .7rem; }
.sidebar-count { font-size: .68rem; font-weight: 700; background: var(--bg-2); color: var(--muted); padding: .1rem .5rem; border-radius: 100px; }
.sidebar-count--active { background: rgba(255,255,255,.3); color: #1a0a00; }
.radio-dot { width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--border-2); flex-shrink: 0; }
.radio-dot--active { border-color: var(--white); background: var(--white); }

.sidebar-packages { padding: .65rem; display: flex; flex-direction: column; gap: .2rem; }
.sidebar-pkg { display: flex; align-items: center; gap: .65rem; padding: .55rem; border-radius: var(--r-sm); transition: var(--t); }
.sidebar-pkg:hover { background: #fffbeb; }
.sidebar-pkg__img { width: 52px; height: 52px; border-radius: var(--r-sm); overflow: hidden; background: #fffbeb; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary-dk); border: 1px solid var(--border); }
.sidebar-pkg__img img { width: 100%; height: 100%; }
.sidebar-pkg__title { font-size: .78rem; font-weight: 800; color: var(--text); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-pkg:hover .sidebar-pkg__title { color: var(--primary-dk); }
.sidebar-pkg__days  { font-size: .68rem; color: var(--muted); }
.sidebar-pkg__price { font-size: .78rem; font-weight: 900; color: var(--primary-dk); }

.sidebar-cta { background: linear-gradient(135deg, #1a0a00, #3d1a00); border-radius: var(--r-xl); padding: 1.4rem; }
.sidebar-cta__icon { width: 44px; height: 44px; border-radius: var(--r); background: rgba(249,170,29,.15); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .8rem; }
.sidebar-cta h3 { font-weight: 900; color: var(--white); font-size: .95rem; margin-bottom: .35rem; }
.sidebar-cta p  { color: rgba(255,255,255,.5); font-size: .78rem; margin-bottom: .9rem; line-height: 1.5; }
.sidebar-cta .btn { margin-bottom: .45rem; }

/* ─── Tours Layout ───────────────────────────────────────── */
.tours-layout { display: flex; gap: 1.75rem; align-items: flex-start; padding: 2rem 1.25rem; }
.sidebar { width: 272px; flex-shrink: 0; position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.1rem; }
.tours-main { flex: 1; min-width: 0; }
.tours-grid--sidebar { grid-template-columns: repeat(3, 1fr); }

.mobile-pills { display: none; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 68px; z-index: 100; box-shadow: var(--shadow-sm); }
.mobile-pills__inner { display: flex; gap: .45rem; overflow-x: auto; padding: .65rem 1.25rem; scrollbar-width: none; }
.mobile-pills__inner::-webkit-scrollbar { display: none; }
.pill { flex-shrink: 0; display: flex; align-items: center; gap: .3rem; padding: .4rem .9rem; border-radius: 100px; background: var(--bg-2); color: var(--muted); font-size: .75rem; font-weight: 700; white-space: nowrap; transition: var(--t); border: 1px solid var(--border); }
.pill--active { background: var(--primary); color: #1a0a00; border-color: var(--primary); }
.pill:hover:not(.pill--active) { background: #fffbeb; color: #92400e; border-color: #fcd34d; }

.hero-search { display: flex; align-items: center; gap: .65rem; max-width: 540px; margin-top: 1.25rem; flex-wrap: wrap; }
.hero-search__input { flex: 1; position: relative; min-width: 210px; }
.hero-search__input svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); }
.hero-search__input input { width: 100%; padding: .75rem 1rem .75rem 2.6rem; border-radius: 100px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); font-size: .85rem; outline: none; transition: var(--t); }
.hero-search__input input::placeholder { color: rgba(255,255,255,.35); }
.hero-search__input input:focus { background: rgba(255,255,255,.14); border-color: rgba(249,170,29,.5); }

.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-bottom: 1.1rem; }
.active-filters__label { font-size: .72rem; font-weight: 700; color: var(--muted); }
.filter-chip { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 100px; border: 1px solid; transition: var(--t); }
.filter-chip--amber { color: #92400e; border-color: #fcd34d; background: #fffbeb; }
.filter-chip--red   { color: var(--secondary); border-color: #fecdd7; background: #fff0f3; }
.filter-chip:hover  { opacity: .75; }
.filter-chip__clear { font-size: .72rem; font-weight: 700; color: var(--muted); text-decoration: underline; cursor: pointer; }
.results-count { font-size: .83rem; color: var(--muted); margin-bottom: 1.1rem; }

.empty-state { text-align: center; padding: 4.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .85rem; }
.empty-state i    { font-size: 3rem; color: var(--muted); }
.empty-state h3   { font-size: 1.35rem; font-weight: 900; color: var(--text); }
.empty-state p    { color: var(--muted); font-size: .88rem; }

.custom-tour-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--r-xl); padding: 2.25rem 2rem; margin-top: 2.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.custom-tour-cta__text h3 { font-size: 1.25rem; font-weight: 900; color: var(--white); }
.custom-tour-cta__text p  { color: rgba(255,255,255,.75); font-size: .85rem; margin-top: .25rem; }

/* ─── Tour Detail ────────────────────────────────────────── */
/* ── Tour Detail: Split Hero Gallery ──────────────────── */
.thg {
  display: grid;
  grid-template-columns: 58fr 42fr;
  height: 600px;
  border-bottom: 3px solid #d97706;
  overflow: hidden;
}
.thg__main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a00, #3d1a00);
  min-height: 0;
}
.thg__main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thg__main--placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 60%, #1a0a00 100%);
}
.thg__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.05) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 2rem 2.5rem;
}
.thg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background: #0a0500;
  height: 100%;
  min-height: 0;
}
.thg__grid-item {
  overflow: hidden;
  position: relative;
  min-height: 0;
  min-width: 0;
}
.thg__grid-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.thg__grid-item:hover img { transform: scale(1.06); }
.thg__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0a00 0%, #2d1400 100%);
}
.tour-hero__title { font-size: clamp(1.6rem, 3.8vw, 2.75rem); font-weight: 900; color: var(--white); margin: .45rem 0 .9rem; }
.tour-hero__meta  { display: flex; flex-wrap: wrap; gap: .65rem 1.35rem; font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 600; }
.tour-hero__meta span { display: flex; align-items: center; gap: .35rem; }
.tour-hero__meta i { color: var(--primary); font-size: .8rem; }

/* ─── Tour Tabs Bar ──────────────────────────────────────── */
.tour-tabs-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 102px; z-index: 200; box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .tour-tabs-bar { top: 68px; }
}

/* Scroll wrap adds right-fade to hint at hidden tabs */
.tour-tabs-scroll-wrap {
  position: relative;
}
.tour-tabs-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.95));
  z-index: 1;
}

.tour-tabs-nav {
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.tour-tabs-nav::-webkit-scrollbar { display: none; }

.tour-tab {
  display: flex; align-items: center; gap: .4rem;
  padding: 1rem 1.5rem; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: .88rem; font-weight: 700; color: var(--muted);
  border-bottom: 3px solid transparent; white-space: nowrap; transition: all .2s;
  flex-shrink: 0;
}
.tour-tab:hover  { color: var(--text); background: var(--bg-2); }
.tour-tab.active { color: var(--primary-dk); border-bottom-color: var(--primary); }
.tour-tab i      { font-size: .82rem; }
.tab-label       { /* visible on all sizes by default */ }

@media (max-width: 768px) {
  .tour-tabs-scroll-wrap::after { width: 32px; }
  .tour-tab {
    flex-direction: column;
    align-items: center;
    gap: .22rem;
    padding: .65rem .9rem;
  }
  .tour-tab i { font-size: 1.05rem; }
  .tab-label { font-size: .62rem; font-weight: 700; letter-spacing: .02em; }
}

/* Tab panels */
.tab-panel         { display: none; }
.tab-panel.active  { display: block; }

.tour-content { display: flex; gap: 2.25rem; padding: 2.25rem 1.25rem; align-items: flex-start; }
.tour-detail  { flex: 1; min-width: 0; }
.booking-sidebar { width: 292px; flex-shrink: 0; position: sticky; top: 102px; display: flex; flex-direction: column; gap: 1.1rem; }

/* ── Mobile sticky booking bar (hidden on desktop) ── */
.mbb { display: none; }

/* ── Similar Tours section (separate from tour detail tabs) ── */
.similar-tours-section {
  background: #f5f5f2;
  border-top: 3px solid var(--border);
  padding: 3rem 0 3.5rem;
}
.similar-tours-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.similar-tours-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary-dk);
  margin-bottom: .3rem;
}
.similar-tours-eyebrow i { margin-right: .3rem; }
.similar-tours-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}
.similar-tours-viewall {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary-dk);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .9rem;
  border: 1.5px solid rgba(217,119,6,.35);
  border-radius: 20px;
  transition: background .18s, color .18s;
}
.similar-tours-viewall:hover { background: var(--primary-dk); color: #fff; }

.detail-section__title { font-size: 1.25rem; font-weight: 900; color: var(--text); margin-bottom: .85rem; padding-bottom: .6rem; border-bottom: 2px solid var(--primary); display: inline-block; }
.detail-section__body  { color: var(--text-dim); line-height: 1.75; font-size: .9rem; margin-bottom: 1.5rem; }
.detail-sub-title { font-size: 1rem; font-weight: 900; color: var(--text); margin: 1.75rem 0 .85rem; display: flex; align-items: center; gap: .45rem; }
.detail-sub-title i { color: var(--primary-dk); font-size: .9rem; }

/* ─── Departure Dates + Packages side-by-side ────────────── */
.dp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-top: 2rem; }
.dp-row__col { min-width: 0; }
.dp-row__col .detail-sub-title { margin-top: 0; }

/* ─── Dates Grid ─────────────────────────────────────────── */
.dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; margin: 1.25rem 0; }
.date-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem;
  transition: var(--t); box-shadow: var(--shadow-sm);
}
.date-card:hover { box-shadow: var(--shadow); border-color: #fcd34d; transform: translateY(-2px); }
.date-card--hot  { border-color: #fecdd3; background: #fff8f8; }
.date-card--full { opacity: .6; }
.date-card__top  { display: flex; align-items: center; justify-content: space-between; }
.date-card__top > i { color: var(--primary-dk); font-size: 1.1rem; }
.date-badge      { font-size: .62rem; font-weight: 800; padding: .2rem .55rem; border-radius: 100px; }
.date-badge--hot { background: #fee2e2; color: #b91c1c; }
.date-badge--full{ background: #e5e7eb; color: #6b7280; }
.date-card__range{ font-size: 1rem; font-weight: 900; color: var(--text); }
.date-card__seats{ font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.dates-note {
  margin-top: 1.25rem; padding: .85rem 1.1rem; background: #fffbeb; border: 1px solid #fcd34d;
  border-radius: var(--r-sm); font-size: .82rem; color: #92400e;
  display: flex; align-items: center; gap: .55rem;
}
.dates-note a { color: var(--primary-dk); font-weight: 700; text-decoration: underline; }
.dates-empty  { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.dates-empty i{ font-size: 2.5rem; display: block; margin-bottom: .75rem; color: var(--primary-dk); }
.dates-empty p{ margin-bottom: 1rem; font-size: .9rem; }

/* ─── Includes & Excludes ────────────────────────────────── */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.25rem; }
.inc-box { border: 1.5px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.inc-box__header { padding: .85rem 1.1rem; font-size: .82rem; font-weight: 800; display: flex; align-items: center; gap: .45rem; }
.inc-box__header--green { background: #f0fdf4; color: #15803d; border-bottom: 1.5px solid #bbf7d0; }
.inc-box__header--red   { background: #fff1f2; color: #be123c; border-bottom: 1.5px solid #fecdd3; }
.inc-list { list-style: none; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .6rem; }
.inc-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; color: var(--text-dim); line-height: 1.5; }
.inc-list li i { flex-shrink: 0; margin-top: .2rem; font-size: .75rem; }
.inc-list:not(.inc-list--exc) li i { color: #16a34a; }
.inc-list--exc li i { color: #be123c; }

.highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: .5rem; }
.highlight-item  { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: .55rem .85rem; font-size: .83rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; color: var(--text-dim); }
.highlight-item i { color: #15803d; font-size: .72rem; flex-shrink: 0; }

.itinerary { display: flex; flex-direction: column; gap: .85rem; }
.itin-day  { display: flex; gap: 1.1rem; }
.itin-day__num  { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; background: var(--primary); color: #1a0a00; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .75rem; text-align: center; line-height: 1.2; }
.itin-day__body { flex: 1; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.1rem; }
.itin-day__title{ font-weight: 800; color: var(--text); margin-bottom: .35rem; font-size: .9rem; }
.itin-day__desc { color: var(--text-dim); font-size: .83rem; line-height: 1.6; }
.itin-day__meta { font-size: .75rem; color: var(--muted); margin-top: .35rem; display: flex; align-items: center; gap: .35rem; }
.itin-day__meta i { color: var(--primary-dk); }

.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 1rem; }
.pkg-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 1.5rem 1.25rem; text-align: center; position: relative; transition: var(--t); }
.pkg-card--popular { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,170,29,.12); }
.pkg-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #1a0a00; font-size: .68rem; font-weight: 800; padding: .2rem .8rem; border-radius: 100px; white-space: nowrap; }
.pkg-card__name  { font-weight: 900; font-size: .95rem; color: var(--text); margin-bottom: .65rem; }
.pkg-card__price { font-size: 1.85rem; font-weight: 900; color: var(--primary-dk); }
.pkg-card__per   { font-size: .75rem; color: var(--muted); margin-bottom: .85rem; }
.pkg-card__desc  { font-size: .78rem; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.5; }
.pkg-card:hover  { box-shadow: var(--shadow); border-color: #fcd34d; }

.booking-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.booking-box__header { padding: 1.5rem; text-align: center; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.booking-box__from  { color: var(--muted); font-size: .72rem; margin-bottom: .2rem; }
.booking-box__price { font-size: 2rem; font-weight: 900; color: var(--primary-dk); }
.booking-box__per   { font-size: .75rem; color: var(--muted); }
.booking-box__actions { padding: 1.1rem; display: flex; flex-direction: column; gap: .5rem; }
.booking-box__trust { padding: .75rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; border-top: 1px solid var(--border); }
.booking-box__trust span { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.booking-box__trust i { color: #15803d; font-size: .7rem; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: .9rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--text-dim); margin-bottom: .3rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .88rem; color: var(--text); transition: var(--t); background: var(--white); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); font-size: .83rem; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,170,29,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.enquiry-form { padding: .9rem 1.1rem 1.1rem; }

/* ─── Contact (legacy – kept for safety) ─────────────────── */
.contact-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-bottom: 2.75rem; }
.contact-chip { display: flex; align-items: center; gap: .9rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); transition: var(--t); }
.contact-chip:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #fcd34d; }
.contact-chip__icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.contact-chip > div { min-width: 0; flex: 1; }
.contact-chip small  { display: block; font-size: .68rem; color: var(--muted); margin-bottom: .15rem; }
.contact-chip strong { display: block; font-size: .92rem; font-weight: 800; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.25rem; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-header { background: linear-gradient(135deg, #1a0a00, #3d1a00); padding: 1.75rem 2rem; }
.contact-form-header h2 { font-size: 1.35rem; font-weight: 900; color: var(--white); }
.contact-form-header p  { color: rgba(255,255,255,.6); font-size: .83rem; margin-top: .2rem; }
.contact-form { padding: 1.5rem 2rem; }
.why-list { padding: .65rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; }
.why-list li { font-size: .83rem; font-weight: 600; color: var(--text-dim); display: flex; align-items: center; gap: .5rem; }
.why-list li i { color: #15803d; font-size: .72rem; }

/* ─── Contact page (redesign) ────────────────────────────── */

/* Top strip */
.ct-top {
  background: #1c0f00;
  padding: 3.5rem 0 0;
  min-height: 420px;
  border-bottom: 3px solid #d97706;
}
.ct-top__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ct-top__left { max-width: 560px; }
.ct-top__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #d97706;
  margin-bottom: .9rem;
}
.ct-top__label i { margin-right: .35rem; }
.ct-top__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .85rem;
  letter-spacing: -.02em;
}
.ct-top__title span { color: #f59e0b; }
.ct-top__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 460px;
}

/* Stats row */
.ct-top__stats {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: .35rem;
}
.ct-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ct-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* Reach buttons */
.ct-reach {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ct-reach__btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .18s;
}
.ct-reach__btn:last-child { border-right: none; }
.ct-reach__btn > i {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.ct-reach__btn > div { min-width: 0; }
.ct-reach__btn small {
  display: block;
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
  opacity: .6;
}
.ct-reach__btn strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-reach__btn--phone { color: #fbbf24; }
.ct-reach__btn--phone:hover { background: rgba(251,191,36,.08); }
.ct-reach__btn--wa { color: #4ade80; }
.ct-reach__btn--wa:hover { background: rgba(74,222,128,.08); }
.ct-reach__btn--email { color: #93c5fd; }
.ct-reach__btn--email:hover { background: rgba(147,197,253,.08); }

/* Body section */
.ct-body {
  padding: 3.5rem 0 4rem;
  background: #f8f8f6;
}
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* Form column */
.ct-form-col {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e4;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  overflow: hidden;
}
.ct-form-head {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid #f0f0ec;
}
.ct-form-head h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: .3rem;
}
.ct-form-head p { font-size: .88rem; color: #6b7280; }

.ct-alert {
  margin: 1.25rem 2rem 0;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ct-alert--ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.ct-alert--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.ct-form {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ct-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-field { display: flex; flex-direction: column; gap: .35rem; }
.ct-field label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #374151;
}
.ct-field label em { color: #d97706; font-style: normal; margin-left: .1rem; }
.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: .72rem .9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-size: .92rem;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color .18s, box-shadow .18s;
  font-family: inherit;
}
.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: #d97706;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,119,6,.1);
}
.ct-field textarea { resize: vertical; min-height: 100px; }

.ct-submit {
  width: 100%;
  padding: .9rem 1.5rem;
  background: linear-gradient(135deg, #92400e, #d97706);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  box-shadow: 0 4px 16px rgba(217,119,6,.3);
  transition: opacity .18s, transform .18s;
  letter-spacing: .02em;
  margin-top: .3rem;
}
.ct-submit:hover { opacity: .92; transform: translateY(-1px); }

.ct-privacy {
  font-size: .73rem;
  color: #9ca3af;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-top: -.3rem;
}

/* Info column */
.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-office {
  background: #fff;
  border-radius: 16px 16px 0 0;
  border: 1px solid #e8e8e4;
  border-bottom: none;
  padding: 1.5rem 1.6rem 1.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.ct-info-heading {
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  margin-bottom: 1.1rem;
}
.ct-office-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-office-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.ct-office-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.ct-office-list strong {
  display: block;
  font-size: .84rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: .18rem;
}
.ct-office-list span,
.ct-office-list a {
  font-size: .83rem;
  color: #6b7280;
  text-decoration: none;
  line-height: 1.4;
}
.ct-office-list a:hover { color: #d97706; }

.ct-divider {
  border: none;
  border-top: 1px solid #f0f0ec;
  margin: 0;
}

/* FAQ */
.ct-faq {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-top: none;
  border-bottom: none;
  padding: 1.4rem 1.6rem 1rem;
}
.ct-faq-item {
  border-bottom: 1px solid #f0f0ec;
}
.ct-faq-item:last-child { border-bottom: none; }
.ct-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  font-size: .87rem;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  gap: .5rem;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-arrow {
  font-size: .62rem;
  color: #d97706;
  flex-shrink: 0;
  transition: transform .22s;
}
.ct-faq-item[open] .ct-faq-arrow { transform: rotate(180deg); }
.ct-faq-item p {
  font-size: .83rem;
  color: #6b7280;
  padding-bottom: .9rem;
  line-height: 1.65;
}

/* Social strip */
.ct-social-strip {
  background: #fff;
  border-radius: 0 0 16px 16px;
  border: 1px solid #e8e8e4;
  border-top: none;
  padding: 1rem 1.6rem;
  display: flex;
  gap: .5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.ct-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: #fff;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.ct-social:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.ct-social--fb { background: #1877F2; }
.ct-social--yt { background: #FF0000; }
.ct-social--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ct-social--wa { background: #25D366; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { padding: .4rem .65rem .65rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: .8rem .45rem; font-weight: 700; font-size: .85rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.1rem; color: var(--primary-dk); flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 .45rem .9rem; font-size: .82rem; color: var(--text-dim); line-height: 1.6; }

/* ─── Blog ───────────────────────────────────────────────── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); margin-bottom: 2.75rem; box-shadow: var(--shadow); }
.blog-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__body { background: var(--white); padding: 2.25rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__meta { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.blog-meta-text { font-size: .75rem; color: var(--muted); }
.blog-featured__title { font-size: 1.5rem; font-weight: 900; color: var(--text); margin-bottom: .75rem; line-height: 1.25; }
.blog-featured__desc  { color: var(--muted); margin-bottom: 1.35rem; line-height: 1.6; font-size: .88rem; }
.blog-more-title { font-weight: 900; font-size: 1rem; color: var(--text); margin-bottom: 1.35rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; margin-bottom: 2.75rem; }
.blog-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--t); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #fcd34d; }
.blog-card__img { position: relative; height: 172px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-cat { display: inline-flex; align-items: center; gap: .3rem; font-size: .68rem; font-weight: 800; padding: .25rem .75rem; border-radius: 100px; }
.blog-cat--spiritual { background: #fffbeb; color: var(--primary-dk); border: 1px solid #fcd34d; }
.blog-cat--overlay { position: absolute; bottom: .65rem; left: .65rem; background: rgba(255,255,255,.92); color: var(--text-dim); backdrop-filter: blur(4px); }
.blog-card__body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta  { font-size: .7rem; color: var(--muted); margin-bottom: .5rem; }
.blog-card__title { font-weight: 800; font-size: .88rem; color: var(--text); line-height: 1.35; flex: 1; margin-bottom: .45rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card:hover .blog-card__title { color: var(--primary-dk); }
.blog-card__desc  { font-size: .78rem; color: var(--muted); line-height: 1.5; margin-bottom: .75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__link  { font-size: .8rem; font-weight: 800; color: var(--primary-dk); margin-top: auto; display: flex; align-items: center; gap: .3rem; }

.newsletter { background: linear-gradient(135deg, #1a0a00, #3d1a00); border-radius: var(--r-xl); padding: 2.25rem 2rem; display: flex; align-items: center; gap: 2.25rem; flex-wrap: wrap; }
.newsletter__icon { width: 52px; height: 52px; border-radius: var(--r-lg); background: rgba(249,170,29,.15); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.newsletter__text h3 { font-size: 1.2rem; font-weight: 900; color: var(--white); }
.newsletter__text p  { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: .2rem; }
.newsletter__form { display: flex; gap: .5rem; flex: 1; min-width: 260px; }
.newsletter__form input { flex: 1; padding: .72rem 1.1rem; border-radius: 100px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); font-size: .83rem; outline: none; transition: var(--t); }
.newsletter__form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter__form input:focus { border-color: rgba(249,170,29,.5); }

/* ─── About ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-stat { text-align: center; padding: 1.75rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); transition: var(--t); box-shadow: var(--shadow-sm); }
.about-stat:hover { border-color: #fcd34d; box-shadow: var(--shadow); }
.about-stat__icon { width: 48px; height: 48px; border-radius: var(--r); background: #fffbeb; color: var(--primary-dk); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto .75rem; }
.about-stat__num  { font-size: 2rem; font-weight: 900; color: var(--primary-dk); display: block; }
.about-stat__lbl  { font-size: .75rem; color: var(--muted); font-weight: 600; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-story h2 { font-size: 2rem; font-weight: 900; color: var(--text); margin-bottom: 1.1rem; }
.about-story p  { color: var(--text-dim); line-height: 1.78; margin-bottom: .9rem; font-size: .9rem; }
.about-story__actions { display: flex; gap: .85rem; margin-top: 1.75rem; flex-wrap: wrap; }
.about-story__img { position: relative; }
.about-story__img img { border-radius: var(--r-xl); width: 100%; height: 320px; box-shadow: var(--shadow-lg); }
.about-story__badge { position: absolute; bottom: -1rem; left: -1rem; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .75rem; border: 1px solid var(--border); }
.about-story__badge i { font-size: 1.75rem; color: var(--primary); }
.about-story__badge strong { display: block; font-size: .83rem; color: var(--text); }
.about-story__badge small  { color: var(--muted); font-size: .72rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.value-card { background: var(--white); border-radius: var(--r-xl); padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--t); }
.value-card:hover { border-color: #fcd34d; box-shadow: var(--shadow); }
.value-card__icon { width: 44px; height: 44px; border-radius: var(--r); background: #fffbeb; color: var(--primary-dk); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .85rem; }
.value-card h3 { font-weight: 900; font-size: 1rem; color: var(--text); margin-bottom: .5rem; }
.value-card p  { color: var(--muted); font-size: .83rem; line-height: 1.6; }

/* ─── Marquee ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-card {
  width: 280px;
  flex-shrink: 0;
}
.marquee-card--why {
  width: 260px;
}
.marquee-track--slow {
  animation-duration: 40s;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Notes Tab ─────────────────────────────────────────── */
.notes-list { list-style: none; padding: 0; margin: 1.25rem 0; display: flex; flex-direction: column; gap: .85rem; }
.notes-item { display: flex; align-items: flex-start; gap: .9rem; background: #fffbeb; border: 1.5px solid #fde68a; border-radius: var(--r-xl); padding: 1rem 1.1rem; }
.notes-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-top: .05rem; }
.notes-item p { margin: 0; font-size: .87rem; color: var(--text); line-height: 1.6; }

/* ─── Cancellation Tab ───────────────────────────────────── */
.policy-list { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-direction: column; gap: .55rem; }
.policy-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .88rem; color: var(--text-dim); line-height: 1.6; }
.policy-list li i { color: #d97706; font-size: .6rem; margin-top: .42rem; flex-shrink: 0; }
.cancel-conditions { margin-top: 1.5rem; }
.cancel-conditions h4 { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; display: flex; align-items: center; gap: .45rem; }
.cancel-conditions ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.cancel-conditions li { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; color: var(--text-dim); line-height: 1.55; }
.cancel-conditions li i { flex-shrink: 0; color: var(--muted); font-size: .75rem; margin-top: .18rem; }

/* ─── Booking Modal ──────────────────────────────────────── */
.bmodal-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.bmodal-backdrop.open { opacity: 1; pointer-events: all; }

.bmodal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  z-index: 1101; width: min(960px, 96vw); max-height: 92vh;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  display: flex; flex-direction: column;
}
.bmodal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }

.bmodal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); color: var(--text);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: var(--t);
}
.bmodal__close:hover { background: var(--secondary); color: #fff; }

.bmodal__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow-y: auto; flex: 1;
}

/* Left panel */
.bmodal__left {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
  padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
}
.bmodal__left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249,170,29,.12) 0%, transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(234,28,70,.1) 0%, transparent 55%);
  pointer-events: none;
}
.bmodal__eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #f9aa1d;
  background: rgba(249,170,29,.12); border: 1px solid rgba(249,170,29,.3);
  border-radius: 99px; padding: .28rem .8rem; margin-bottom: .9rem;
  width: fit-content;
}
.bmodal__heading {
  font-size: 1.65rem; font-weight: 900; color: #fff; line-height: 1.22;
  margin-bottom: .75rem;
}
.bmodal__heading span { color: #f9aa1d; }
.bmodal__sub { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.5rem; }

.bmodal__perks { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .95rem; }
.bmodal__perks li { display: flex; align-items: flex-start; gap: .85rem; }
.bmodal__perk-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: #fff; margin-top: .05rem;
}
.bmodal__perk-icon--gold   { background: linear-gradient(135deg,#f9aa1d,#f97316); }
.bmodal__perk-icon--blue   { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.bmodal__perk-icon--green  { background: linear-gradient(135deg,#22c55e,#15803d); }
.bmodal__perk-icon--red    { background: linear-gradient(135deg,#ea1c46,#be123c); }
.bmodal__perk-icon--purple { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.bmodal__perks li div strong { display: block; font-size: .84rem; font-weight: 800; color: #fff; margin-bottom: .1rem; }
.bmodal__perks li div p { margin: 0; font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.45; }

.bmodal__trust { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; margin-top: auto; }
.bmodal__trust-stat { text-align: center; }
.bmodal__trust-stat span { display: block; font-size: 1.15rem; font-weight: 900; color: #f9aa1d; }
.bmodal__trust-stat small { font-size: .66rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }

/* Right panel */
.bmodal__right { padding: 2.25rem 2rem; overflow-y: auto; background: #fafafa; }
.bmodal__form-title { font-size: 1.15rem; font-weight: 900; color: var(--text); margin-bottom: .25rem; display: flex; align-items: center; gap: .5rem; }
.bmodal__form-title i { color: var(--primary-dk); }
.bmodal__form-sub { font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }

.bmodal__form { display: flex; flex-direction: column; gap: .85rem; }
.bmodal__fg { display: flex; flex-direction: column; gap: .3rem; }
.bmodal__fg label { font-size: .75rem; font-weight: 700; color: var(--text); }
.bmodal__fg input,
.bmodal__fg select,
.bmodal__fg textarea {
  width: 100%; padding: .62rem .9rem;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: .86rem; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.bmodal__fg input:focus,
.bmodal__fg select:focus,
.bmodal__fg textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,170,29,.14); }
.bmodal__fg textarea { resize: vertical; min-height: 80px; }
.bmodal__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

.bmodal__submit {
  width: 100%; padding: .85rem; border: none; border-radius: 12px;
  background: linear-gradient(135deg, #f9aa1d, #f97316);
  color: #fff; font-size: .95rem; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: .5rem; transition: var(--t); box-shadow: 0 4px 16px rgba(249,170,29,.35);
  margin-top: .25rem;
}
.bmodal__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,170,29,.4); }

.bmodal__privacy { font-size: .72rem; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: .35rem; margin-top: .35rem; }

@media (max-width: 700px) {
  .bmodal__inner { grid-template-columns: 1fr; }
  .bmodal__left { display: none; }
  .bmodal__right { padding: 1.75rem 1.25rem; }
  .bmodal__row2 { grid-template-columns: 1fr; }
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: rgba(255,255,255,.38); margin-bottom: .5rem; }
.breadcrumb a { color: rgba(255,255,255,.38); }
.breadcrumb a:hover { color: var(--primary); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; padding-top: 2rem; padding-bottom: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 1.75rem; }
  .values-grid { grid-template-columns: 1fr; }
  .about-story__badge { left: 0; }
  .home-about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-about__badge { left: 0; }
  .home-about__badge2 { right: 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(3,1fr); }
  .about-exp-inner { grid-template-columns: 1fr; }
  .about-exp-img-col { position: static; }
  .about-overview-inner { grid-template-columns: 1fr; }
  .about-overview-right { position: static; }
  .about-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-float--tl { top: .5rem; left: .5rem; }
  .about-story-float--br { bottom: .5rem; right: .5rem; }
  .about-mvv-grid { grid-template-columns: 1fr; }
  .about-timeline::before { left: 1.2rem; }
  .atl-item, .atl-item--left { flex-direction: row; text-align: left; }
  .atl-dot { left: 1.2rem; }
  .atl-card { max-width: 100%; margin-left: 3.5rem; }
}

@media (max-width: 900px) {
  .hero__dests { display: none; }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .top-bar { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  /* ── Full-width dropdown menu ── */
  .nav-drawer {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
    z-index: 1100;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .22s ease;
    overflow-y: auto;
    max-height: calc(100svh - 68px);
    display: flex;
    flex-direction: column;
  }
  .nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Overlay — only dims content below the navbar */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.38);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  /* Drawer header: hide — logo already visible in the sticky navbar */
  .drawer-header { display: none !important; }

  /* Show link icons in mobile menu */
  .nav-link-icon { display: inline; }

  /* ── Nav section ── */
  .drawer-nav { padding: .4rem 0 0; }
  .drawer-nav__label {
    display: block;
    font-size: .58rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .14em; color: #b0b0b0; margin-bottom: .2rem; padding: 0 1.1rem;
  }

  /* Nav links — flat full-width rows */
  .nav-links {
    display: flex; flex-direction: column;
    gap: 0; list-style: none; padding: 0; margin: 0;
  }
  .nav-links > li { width: 100%; border-bottom: 1px solid #f0f1f3; }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-link {
    display: flex; align-items: center; gap: .75rem;
    width: 100%; padding: .85rem 1.1rem;
    border-radius: 0;
    font-size: .93rem; font-weight: 600; color: #4b5563;
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
    text-align: left;
  }
  .nav-link__icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: #f0f1f4;
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; color: #6b7280;
    flex-shrink: 0; transition: background .15s, color .15s;
  }
  .nav-link:hover { color: #92400e; background: #fffbeb; border-left-color: #f59e0b; }
  .nav-link:hover .nav-link__icon { background: #fef3c7; color: #d97706; }
  .nav-link.active {
    color: #92400e; background: #fff8e1;
    border-left-color: #d97706; font-weight: 700;
  }
  .nav-link.active .nav-link__icon { background: #d97706; color: #fff; }

  /* Tour Packages inline sub-menu */
  .dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    padding: 0; width: 100%;
    background: #f8f9fb;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    margin: 0; display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: flex; flex-direction: column; gap: 0; }
  .dropdown-item {
    font-size: .87rem; padding: .72rem 1.1rem .72rem 2.6rem;
    border-radius: 0; border-bottom: 1px solid #eef0f3;
    color: #4b5563; background: transparent;
    display: flex; align-items: center; gap: .55rem;
  }
  .dropdown-item:last-child { border-bottom: none; }
  .dropdown-item i { color: #d97706; width: 14px; text-align: center; flex-shrink: 0; }
  .dropdown-item:hover { background: #fffbeb; color: #92400e; }
  .nav-arrow { margin-left: auto; font-size: .65rem; color: #9ca3af; transition: transform .22s; }
  .nav-dropdown.open .nav-arrow { transform: rotate(180deg); color: #d97706; }

  /* ── CTA strip — side by side ── */
  .drawer-cta {
    display: flex; flex-direction: row; gap: .6rem;
    padding: .85rem 1rem;
    border-top: 1px solid #eee;
    background: #fafafa;
  }
  .drawer-cta__book {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .78rem .5rem;
    background: linear-gradient(135deg, #b45309, #d97706);
    color: #fff; font-weight: 700; font-size: .86rem;
    border: none; border-radius: 10px; cursor: pointer;
    box-shadow: 0 3px 12px rgba(217,119,6,.35);
  }
  .drawer-cta__phone {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .78rem .5rem;
    background: #fff; color: #374151; font-weight: 600; font-size: .86rem;
    border: 1.5px solid #d1d5db; border-radius: 10px; text-decoration: none;
  }
  .drawer-cta__phone i { color: #d97706; }

  /* ── Social + copyright footer ── */
  .drawer-footer {
    display: flex; flex-direction: row; align-items: center;
    justify-content: space-between;
    padding: .65rem 1rem;
    background: #f5f6f8; border-top: 1px solid #eee;
  }
  .drawer-socials { display: flex; gap: .4rem; }
  .drawer-social {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .78rem; transition: transform .18s;
  }
  .drawer-social--fb { background: #1877F2; }
  .drawer-social--yt { background: #FF0000; }
  .drawer-social--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
  .drawer-social--wa { background: #25D366; }
  .drawer-social:hover { transform: scale(1.12); }
  .drawer-copy { font-size: .6rem; color: #9ca3af; }

  /* Hide desktop phone+Book Now inside nav-links */
  .nav-links .nav-cta { display: none; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero__inner { padding: 5rem 0 3rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero__stats { gap: 1rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* ── Sections ── */
  .section { padding: 3rem 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* ── Home About ── */
  .home-about__title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .home-about__img-wrap { max-height: 260px; overflow: hidden; border-radius: 16px; }
  .home-about__badge, .home-about__badge2 { display: none; }

  /* ── Feat ── */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 1.5rem; }

  /* ── Categories ── */
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cat-card { min-height: 320px; }

  /* ── Tour cards ── */
  .tours-grid--sidebar { grid-template-columns: 1fr; }
  .tours-layout { flex-direction: column; padding: 1rem; }
  .sidebar { width: 100%; position: static; }
  .mobile-pills { display: block; }
  .tour-content { flex-direction: column; padding: 1rem; }
  /* Hide the full sidebar on mobile — replaced by the sticky bottom bar */
  .booking-sidebar { display: none; }

  /* ── Tour split hero: stack on mobile ── */
  .thg { grid-template-columns: 1fr; grid-template-rows: 340px 200px; height: auto; }
  .thg__main { height: 340px; min-height: 340px; }
  .thg__grid { height: 200px; min-height: 200px; }

  /* ── Mobile sticky booking bar ── */
  .mbb {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 600;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    padding: .75rem 1rem;
    padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }
  .mbb__price {
    display: flex;
    align-items: baseline;
    gap: .2rem;
    flex-shrink: 0;
  }
  .mbb__from { font-size: .65rem; color: #9ca3af; font-weight: 600; }
  .mbb__amount { font-size: 1.2rem; font-weight: 900; color: #b45309; line-height: 1; }
  .mbb__per { font-size: .62rem; color: #9ca3af; font-weight: 600; }
  .mbb__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    justify-content: flex-end;
  }
  .mbb__btn {
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; font-weight: 700; text-decoration: none;
    border-radius: 10px; transition: opacity .15s, transform .15s;
    font-family: inherit;
  }
  .mbb__btn:active { opacity: .85; transform: scale(.97); }
  .mbb__btn--call {
    width: 42px; height: 42px;
    background: #dc2626; color: #fff; font-size: 1rem; flex-shrink: 0;
  }
  .mbb__btn--wa {
    width: 42px; height: 42px;
    background: #16a34a; color: #fff; font-size: 1.1rem; flex-shrink: 0;
  }
  .mbb__btn--book {
    padding: 0 1.1rem; height: 42px;
    background: linear-gradient(135deg, #92400e, #d97706);
    color: #fff; font-size: .88rem; letter-spacing: .01em;
  }

  /* Push page content above the fixed bar */
  body.tour-page { padding-bottom: 70px; }

  /* ── About ── */
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-hero__logo { height: 70px; }
  .about-cta-inner h2 { font-size: 1.5rem; }
  .about-cta-btns { flex-direction: column; align-items: stretch; }
  .about-cta-btn { justify-content: center; }
  .about-cta-strip { flex-direction: column; gap: .75rem; }
  .about-cta-strip-div { display: none; }

  /* ── Footer ── */
  .site-footer { overflow-x: hidden; }

  /* Stats strip: 2×2 grid */
  .footer-stats { overflow: hidden; }
  .footer-stats__grid { grid-template-columns: 1fr 1fr; }
  .fstat { border-right: none; border-bottom: 1px solid var(--border); padding: 1.1rem .75rem; }
  .fstat:nth-child(odd) { border-right: 1px solid var(--border); }
  .fstat:last-child { border-bottom: none; }
  .fstat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .fstat__num { font-size: 1.4rem; }
  .fstat__lbl { font-size: .68rem; letter-spacing: .06em; }
  .fstat__icon { font-size: .9rem; margin-bottom: .3rem; }

  /* CTA band: stack vertically */
  .footer-cta-wrap { padding: 1rem 0; }
  .footer-cta {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }
  .footer-cta__deco { display: none; }
  .footer-cta__text { width: 100%; }
  .footer-cta__heading { font-size: 1.15rem; }
  .footer-cta__sub { font-size: .8rem; }
  .footer-cta__pills { gap: .3rem; flex-wrap: wrap; }
  .footer-cta__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: .5rem;
  }
  .footer-cta__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: .75rem 1rem;
    font-size: .88rem;
  }

  /* Main grid: single column */
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .footer-brand { width: 100%; }
  .footer-brand__desc { font-size: .88rem; line-height: 1.65; margin: .75rem 0 1rem; }
  .footer-col__title { font-size: .75rem; margin-bottom: .75rem; }
  .footer-links a { font-size: .88rem; }
  .footer-links li { margin-bottom: .45rem; }
  .footer-contact-list small { font-size: .72rem; }
  .footer-contact-list strong { font-size: .88rem; }
  .footer-contact-list li { margin-bottom: .7rem; }
  .footer-socials { gap: .4rem; }
  .social-icon { width: 34px; height: 34px; font-size: .8rem; }
  .footer-badges { gap: .3rem; flex-wrap: wrap; }
  .footer-badge { font-size: .72rem; padding: .2rem .5rem; }

  /* Destinations */
  .footer-destinations { padding: 1rem 0; overflow-x: hidden; }
  .footer-destinations__inner { gap: .4rem; flex-wrap: wrap; }
  .footer-destinations__label { width: 100%; font-size: .75rem; }
  .footer-destinations__tags { flex-wrap: wrap; gap: .3rem; }
  .dest-tag { font-size: .72rem; padding: .2rem .5rem; }

  /* Bottom bar: stacked */
  .footer-bottom__inner { flex-direction: column; align-items: center; text-align: center; gap: .35rem; font-size: .8rem; }

  /* ── Blog ── */
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__img { height: 220px; }

  /* ── Contact (legacy) ── */
  .form-row { grid-template-columns: 1fr; }
  .contact-chips { grid-template-columns: 1fr 1fr; }

  /* ── Contact redesign ── */
  .ct-top { padding: 2.5rem 0 0; }
  .ct-top__inner { flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
  .ct-top__stats { flex-direction: row; flex-wrap: wrap; gap: .75rem 1.5rem; }
  .ct-top__title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .ct-reach { flex-direction: column; border-top: 1px solid rgba(255,255,255,.1); }
  .ct-reach__btn { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 1rem 1.1rem; }
  .ct-reach__btn:last-child { border-bottom: none; }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-form-head { padding: 1.25rem 1.25rem .9rem; }
  .ct-form { padding: 1rem 1.25rem 1.5rem; }
  .ct-row2 { grid-template-columns: 1fr; }
  .ct-body { padding: 2rem 0 3rem; }

  /* ── Modal ── */
  .bmodal { width: 100%; height: 100svh; border-radius: 0; top: 0; left: 0; right: 0; bottom: 0; transform: none; margin: 0; max-height: 100svh; overflow-y: auto; }
  .bmodal__inner { grid-template-columns: 1fr; }
  .bmodal__left { display: none; }
  .bmodal__right { padding: 1.5rem 1.25rem; }
  .bmodal__row2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 280px; }
  .contact-chips { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .dp-row { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
  .feat-section .section-eyebrow { font-size: .7rem; }
  .hero__title { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .testi-card { width: 240px; }
  .about-cta-pills { gap: .4rem; }
  .about-cta-pills span { font-size: .68rem; padding: .3rem .65rem; }
}

@media (max-width: 360px) {
  .container { padding: 0 .85rem; }
  .section { padding: 2.5rem 0; }
}
