/* ===================================================
   DAWN SAFARIS KENYA — style.css
   =================================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --earth: #3B2A1A;
  --earth-mid: #5C3D22;
  --earth-light: #8B6240;
  --cream: #F5EFE0;
  --cream-dark: #EDE3CE;
  --sand: #D4B483;
  --forest: #2C3E2D;
  --white: #FDFAF4;
  --text-dark: #1A1208;
  --text-mid: #4A3728;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text-dark); overflow-x: hidden; padding-top: 36px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--earth); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--text-dark);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  height: 36px;
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.top-bar-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 52px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(245,239,224,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.top-bar-stat svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }
.top-bar-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; line-height: 1; }
.top-bar-divider { color: rgba(201,168,76,0.25); font-size: 11px; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  color: rgba(245,239,224,0.38);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.top-bar-phone svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.top-bar-phone:hover { color: var(--gold-light); }
/* ── TOP BAR ACTION BUTTONS ──────────────────────────────── */
.top-bar-action {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.45);
  color: rgba(245,239,224,0.75);
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
  margin-left: 8px;
}
.top-bar-action:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.top-bar-action--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth) !important;
}
.top-bar-action--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
@media (max-width: 900px) {
  .top-bar-action { display: none; }
}


@media (max-width: 768px) {
  /* top bar — single compact row, show only stars + phone */
  .top-bar { height: 40px; }
  .top-bar-inner { padding: 0 20px; flex-direction: row; justify-content: space-between; align-items: center; }
  .top-bar-left { gap: 6px; }
  .top-bar-stat:last-of-type { display: none; }
  .top-bar-divider { display: none; }
  .top-bar-label { display: none; }
  .top-bar-stat { font-size: 9px; letter-spacing: 0.5px; }
  /* nav sits exactly below 40px top bar */
  nav { top: 40px !important; height: 64px !important; }
  nav.scrolled { top: 0 !important; height: 60px !important; }
  .nav-logo-img { height: 42px; }
  body { padding-top: 40px; }
}

/* ===== NAV — always dark background ===== */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  height: 90px;
  background: rgba(26,18,8,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: height 0.4s ease, box-shadow 0.4s ease, top 0.35s ease;
}
nav.scrolled {
  height: 70px;
  background: rgba(26,18,8,0.99);
  box-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 58px; width: auto; object-fit: contain; display: block; transition: opacity 0.3s; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)); }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: rgba(245,239,224,0.82); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color 0.3s;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: transparent !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; padding: 7px 17px !important; letter-spacing: 2px !important; transition: all 0.3s ease !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--earth) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero { position: relative; height: 78vh; min-height: 520px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.3s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,18,8,0.78) 0%, rgba(26,18,8,0.3) 55%, rgba(26,18,8,0.55) 100%); }
.hero-slide-1 { background-image: url('images/banners/img-05.jpg'); background-position: center 30%; }
.hero-slide-2 { background-image: url('images/banners/img-02.jpg'); background-position: center 40%; }
.hero-slide-3 { background-image: url('images/banners/img-09.jpg'); background-position: center 50%; }
.hero-slide-4 { background-image: url('images/banners/img-01.jpg'); background-position: center 35%; }
.hero-slide-5 { background-image: url('images/banners/img-03.jpg'); background-position: center 50%; }
.hero-slide-6 { background-image: url('images/banners/img-06.jpg'); background-position: center 60%; }
.hero-slide-7 { background-image: url('images/banners/img-08.jpg'); background-position: center 45%; }

.hero-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 70px; max-width: 760px; }
.hero-tag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; opacity: 0; animation: fadeUp 0.9s ease 0.3s forwards; }
.hero-tag::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); }
.hero-title { font-family: var(--serif); font-size: clamp(32px,4.5vw,58px); font-weight: 600; color: var(--cream); line-height: 1.08; margin-bottom: 14px; letter-spacing: -0.5px; text-shadow: 0 3px 30px rgba(0,0,0,0.4); opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-desc { font-family: var(--sans); font-size: 13px; font-weight: 400; color: rgba(245,239,224,0.82); line-height: 1.75; max-width: 460px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.9s ease 0.9s forwards; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s ease 1.1s forwards; }
.hero-scroll-indicator { position: absolute; bottom: 22px; left: 70px; z-index: 10; display: flex; align-items: center; gap: 12px; opacity: 0; animation: fadeUp 0.9s ease 1.5s forwards; }
.scroll-line { width: 1px; height: 36px; background: var(--gold); opacity: 0.65; animation: scrollPulse 2s ease infinite; }
.scroll-text { font-family: var(--sans); font-size: 9px; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; writing-mode: vertical-lr; }
.hero-dots { position: absolute; bottom: 22px; right: 70px; z-index: 10; display: flex; gap: 8px; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(245,239,224,0.3); cursor: pointer; transition: all 0.3s ease; border: none; }
.hero-dot.active { background: var(--gold); transform: scale(1.4); }
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; height: 3px; background: rgba(255,255,255,0.1); }
.hero-progress-bar { height: 100%; background: var(--gold); width: 0%; }

/* ===== SAFARI STRIP ===== */
.safari-strip { background: var(--earth); overflow-x: auto; scrollbar-width: none; }
.safari-strip::-webkit-scrollbar { display: none; }
.safari-strip-inner { display: flex; min-width: max-content; border-bottom: 1px solid rgba(201,168,76,0.12); }
.safari-type { display: flex; flex-direction: column; align-items: center; padding: 24px 36px; gap: 10px; border-right: 1px solid rgba(201,168,76,0.1); cursor: pointer; transition: all 0.3s ease; text-decoration: none; min-width: 130px; }
.safari-type:hover { background: rgba(201,168,76,0.1); }
.safari-type svg { width: 36px; height: 36px; color: var(--gold); stroke-width: 2; }
.safari-type span { font-family: var(--sans); font-size: 9px; font-weight: 600; color: var(--cream); letter-spacing: 2.5px; text-transform: uppercase; text-align: center; }

/* ===== SECTION COMMONS ===== */
section { position: relative; }
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px; }
.section-tag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(36px,4vw,56px); font-weight: 600; line-height: 1.1; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--gold-dark); font-weight: 300; }
.section-body { font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.85; max-width: 560px; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--earth); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 13px 26px; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(245,239,224,0.55); color: var(--cream); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 13px 26px; text-decoration: none; transition: all 0.3s ease; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== INTRO ===== */
.intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 200px; }
.intro-image { position: relative; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.intro-image:hover img { transform: scale(1.04); }
.intro-image-badge { position: absolute; bottom: 40px; right: -20px; background: var(--earth); padding: 20px 32px; border-left: 3px solid var(--gold); }
.intro-image-badge strong { display: block; font-family: var(--serif); font-size: 38px; color: var(--gold); font-weight: 700; }
.intro-image-badge span { font-family: var(--sans); font-size: 9px; font-weight: 400; color: var(--cream); letter-spacing: 3px; text-transform: uppercase; }
.intro-text { background: var(--cream); padding: 56px 70px; display: flex; flex-direction: column; justify-content: center; }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--sand); margin-top: 35px; border: 1px solid var(--sand); }
.intro-stat { background: var(--cream-dark); padding: 17px 20px; text-align: center; }
.intro-stat strong { display: block; font-family: var(--serif); font-size: 32px; color: var(--earth); font-weight: 700; }
.intro-stat small { font-family: var(--sans); font-size: 9px; font-weight: 500; color: var(--text-mid); letter-spacing: 2px; text-transform: uppercase; }

/* =====================================================
   ITINERARIES — MAHLATINI STYLE
   Full-bleed photo cards. Text revealed on hover.
   ===================================================== */
.itineraries { background: var(--earth); padding: 100px 0 0; position: relative; }
.itineraries-header { padding: 0 60px; margin-bottom: 50px; }
.itineraries-header-inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.itineraries-header .section-title { color: var(--cream); }
.itineraries-header .section-tag { color: var(--gold); }

.itin-nav { display: flex; align-items: center; gap: 10px; position: absolute; top: 100px; right: 60px; z-index: 2; }
.itin-scroll-btn { width: 48px; height: 48px; border: 1px solid rgba(201,168,76,0.5); background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gold); transition: all 0.25s; font-size: 20px; }
.itin-scroll-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--earth); }

/* Scroll track */
.itin-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  padding: 0 60px 30px;
}
.itin-scroll-track:active { cursor: grabbing; }
.itin-scroll-track::-webkit-scrollbar { display: none; }

/* ── Photo card — full height, text on hover ── */
.itin-card {
  flex: 0 0 30%;
  min-width: 30%;
  position: relative;
  overflow: hidden;
  height: 490px;
  text-decoration: none;
  display: block;
}

/* Background photo */
.itin-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.itin-card:hover .itin-card-img { transform: scale(1.08); }

/* Default gradient — always visible at bottom so title is readable */
.itin-overlay-default {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26,18,8,0.88) 0%,
    rgba(26,18,8,0.35) 50%,
    rgba(26,18,8,0.0) 100%);
  transition: opacity 0.5s ease;
}
.itin-card:hover .itin-overlay-default { opacity: 0; }

/* Hover gradient — full cover */
.itin-overlay-hover {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(59,42,26,0.96) 0%,
    rgba(59,42,26,0.88) 60%,
    rgba(59,42,26,0.75) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.itin-card:hover .itin-overlay-hover { opacity: 1; }

/* Always-visible badge */
.itin-badge {
  position: absolute; top: 22px; left: 22px; z-index: 5;
  background: var(--gold); color: var(--earth);
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 5px 13px;
}

/* Default title bar — shown normally, slides away on hover */
.itin-default-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 0 28px 30px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.itin-card:hover .itin-default-info { opacity: 0; transform: translateY(10px); }

.itin-default-region {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 7px;
}
.itin-default-title {
  font-family: var(--serif); font-size: clamp(20px,2vw,26px); font-weight: 600;
  color: var(--cream); line-height: 1.2;
}

/* Number watermark — default visible, fades on hover */
.itin-num {
  position: absolute; bottom: 18px; right: 22px; z-index: 3;
  font-family: var(--serif); font-size: 88px; font-weight: 700; line-height: 1;
  color: rgba(245,239,224,0.1); user-select: none;
  transition: opacity 0.35s ease;
}
.itin-card:hover .itin-num { opacity: 0; }

/* Hover content — slides up from bottom */
.itin-hover-body {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 28px 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease 0.06s, transform 0.45s ease 0.06s;
}
.itin-card:hover .itin-hover-body { opacity: 1; transform: translateY(0); }

.itin-hover-region {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px;
}
.itin-hover-title {
  font-family: var(--serif); font-size: clamp(24px,2.5vw,32px); font-weight: 600;
  color: var(--cream); line-height: 1.15; margin-bottom: 12px;
}
.itin-hover-line { width: 36px; height: 2px; background: var(--gold); margin-bottom: 16px; }
.itin-hover-desc {
  font-family: var(--sans); font-size: 12.5px; font-weight: 300;
  color: rgba(245,239,224,0.80); line-height: 1.75; margin-bottom: 22px;
}
.itin-hover-meta {
  display: flex; gap: 22px; margin-bottom: 24px;
  padding-top: 16px; border-top: 1px solid rgba(201,168,76,0.25); flex-wrap: wrap;
}
.itin-hover-meta-item { display: flex; flex-direction: column; gap: 3px; }
.itin-hover-meta-label { font-family: var(--sans); font-size: 8px; font-weight: 600; color: rgba(201,168,76,0.65); letter-spacing: 2px; text-transform: uppercase; }
.itin-hover-meta-val { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--cream); }
.itin-hover-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.5); padding-bottom: 3px;
  align-self: flex-start; text-decoration: none;
}
.itin-hover-cta svg { width: 13px; height: 13px; }

/* progress pips */
.itin-pips { display: flex; gap: 6px; padding: 20px 60px 0; }
.itin-pip { height: 3px; border-radius: 2px; background: rgba(201,168,76,0.18); flex: 1; max-width: 60px; transition: background 0.3s; }
.itin-pip.active { background: var(--gold); }

.dest-view-all { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); padding-bottom: 3px; }

/* ===== DESTINATIONS ===== */

/* ===== LUXURY DIVIDER ===== */
.luxury-divider { background: var(--earth); padding: 10px 60px; }
.luxury-divider-inner { display: flex; align-items: center; max-width: 900px; margin: 0 auto; }
.luxury-divider-line { flex: 1; height: 1px; background: linear-gradient(to var(--dir, right), transparent, rgba(201,168,76,0.55) 40%, rgba(201,168,76,0.55) 60%, transparent); }
.luxury-divider-line:first-child { --dir: right; }
.luxury-divider-line:last-child  { --dir: left; }
.luxury-divider-emblem { flex-shrink: 0; padding: 0 18px; display: flex; align-items: center; }
.luxury-divider-emblem svg { width: 72px; height: 28px; display: block; }

.destinations { background: var(--earth); padding: 16px 60px 100px; }
.destinations-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.destinations-header .section-title { color: var(--cream); margin-bottom: 0; }
.destinations-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; }
.dest-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; }
.dest-card:first-child { grid-row: 1/3; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,8,0.88) 0%, rgba(26,18,8,0.08) 60%); transition: opacity 0.4s; }
.dest-card:hover::after { opacity: 0.75; }
.dest-card-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 26px 22px; }
.dest-card-region { font-family: var(--sans); font-size: 9px; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 5px; }
.dest-card-name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cream); line-height: 1.2; }
.dest-card:first-child .dest-card-name { font-size: 38px; }
.dest-card-arrow { position: absolute; top: 22px; right: 22px; z-index: 2; width: 38px; height: 38px; border: 1px solid rgba(245,239,224,0.35); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 16px; opacity: 0; transform: translateY(-6px); transition: all 0.3s ease; }
.dest-card:hover .dest-card-arrow { opacity: 1; transform: translateY(0); }

/* ===== WHY US ===== */
.why-us { background: var(--forest); background-image: linear-gradient(rgba(20,14,6,0.65), rgba(20,14,6,0.72)), url('images/why/jambo-kenya-safaris.jpg'); background-size: cover; background-position: center;  padding: 120px 60px; text-align: center; }
.why-us .section-tag { justify-content: center; }
.why-us .section-tag::before { display: none; }
.why-us .section-title { color: var(--cream); text-align: center; margin: 0 auto 60px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 56px; }
.why-card { background: rgba(26,18,8,0.62); backdrop-filter: blur(4px); border: 1px solid rgba(201,168,76,0.15); padding: 48px 30px; text-align: left; transition: all 0.3s ease; }
.why-card:hover { background: rgba(26,18,8,0.82); border-color: rgba(201,168,76,0.45); transform: translateY(-4px); }
.why-icon { width: 54px; height: 54px; margin-bottom: 22px; color: var(--gold); stroke-width: 2; }
.why-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.why-card p { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(245,239,224,0.72); line-height: 1.8; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); padding: 100px 60px; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-tag { justify-content: center; }
.testimonials-header .section-tag::before { display: none; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.testi-card { background: var(--white); padding: 42px 34px; border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s; }
.testi-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-quote { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--text-dark); line-height: 1.7; margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 19px; color: var(--earth); font-weight: 700; }
.testi-name { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--earth); }
.testi-country { font-family: var(--sans); font-size: 11px; font-weight: 300; color: var(--earth-light); }

/* ===== GALLERY STRIP ===== */
.gallery-strip { display: grid; grid-template-columns: repeat(6,1fr); height: 270px; }
.gallery-strip-item { overflow: hidden; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.8); }
.gallery-strip-item:hover img { transform: scale(1.1); filter: saturate(1.1); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--earth); display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.cta-image { position: relative; overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.cta-text { padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.cta-text .section-title { color: var(--cream); }
.cta-text .section-body { color: rgba(245,239,224,0.7); margin-bottom: 34px; }
.cta-contact { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.cta-phone-icon { width: 50px; height: 50px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.cta-phone-label { font-family: var(--sans); font-size: 10px; font-weight: 500; color: rgba(245,239,224,0.55); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.cta-phone-num { font-family: var(--serif); font-size: 27px; font-weight: 400; color: var(--cream); text-decoration: none; }
.cta-phone-num:hover { color: var(--gold); }

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 100px 60px; }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-dark); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--earth); list-style: none; gap: 16px; }
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--sand); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.82; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }

/* ===== CONTACT ===== */
/* ===== MEGA FOOTER ===== */
.mega-footer { background: var(--text-dark); }

/* enquiry band */
.mf-enquiry { padding: 90px 60px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.mf-enquiry-inner { display: grid; grid-template-columns: 1fr 1px 1.6fr; gap: 70px; align-items: start; max-width: 1280px; margin: 0 auto; }

/* divider */
.mf-divider { background: rgba(201,168,76,0.15); align-self: stretch; }

/* left panel */
.mf-left { display: flex; flex-direction: column; }
.mf-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 22px; filter: brightness(1.05); }
.mf-tagline { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(245,239,224,0.5); line-height: 1.85; margin-bottom: 36px; }

.mf-contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.mf-contact-item { display: flex; align-items: flex-start; gap: 14px; text-decoration: none; }
.mf-contact-icon { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.mf-contact-icon svg { width: 16px; height: 16px; }
.mf-contact-item span:last-child { display: flex; flex-direction: column; gap: 3px; }
.mf-contact-label { font-family: var(--sans); font-size: 9px; font-weight: 500; color: rgba(245,239,224,0.35); letter-spacing: 2px; text-transform: uppercase; }
.mf-contact-value { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--cream); transition: color 0.3s; }
.mf-contact-item:hover .mf-contact-value { color: var(--gold); }

.mf-socials { display: flex; gap: 10px; }
.mf-social { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,0.22); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 11px; font-weight: 700; text-decoration: none; font-family: var(--sans); transition: all 0.3s; }
.mf-social:hover { background: var(--gold); color: var(--earth); }

/* right form panel */
.mf-right { display: flex; flex-direction: column; }
.mf-form-heading { margin-bottom: 30px; }
.mf-form-tag { font-family: var(--sans); font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.mf-form-title { font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); font-weight: 600; color: var(--cream); line-height: 1.15; }
.mf-form-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }

.mf-form { display: flex; flex-direction: column; gap: 12px; }
.mf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mf-form-group { display: flex; flex-direction: column; gap: 6px; }
.mf-form-label { font-family: var(--sans); font-size: 9px; font-weight: 600; color: rgba(245,239,224,0.38); letter-spacing: 2px; text-transform: uppercase; }
.mf-form-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.18); color: var(--cream); padding: 13px 16px; font-family: var(--sans); font-size: 13px; font-weight: 300; outline: none; transition: border-color 0.3s; appearance: none; width: 100%; }
.mf-form-input::placeholder { color: rgba(245,239,224,0.2); }
.mf-form-input:focus { border-color: var(--gold); }
.mf-form-input option { background: var(--text-dark); color: var(--cream); }
.mf-form-textarea { resize: vertical; min-height: 110px; }
.mf-form-sub { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(245,239,224,0.5); line-height: 1.75; margin-top: 10px; }
.mf-maillist { gap: 14px; }
.mf-form-privacy { font-family: var(--sans); font-size: 10px; font-weight: 300; color: rgba(245,239,224,0.28); letter-spacing: 0.5px; margin-top: 4px; }
.mf-form-btn { margin-top: 6px; background: var(--gold); color: var(--earth); border: none; padding: 16px 32px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: background 0.3s, color 0.3s; align-self: flex-start; }
.mf-form-btn:hover { background: var(--gold-light); }

/* bottom bar */
.mf-bottom { padding: 24px 60px; }
.mf-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; max-width: 1280px; margin: 0 auto; }
.mf-copy { font-family: var(--sans); font-size: 11px; font-weight: 300; color: rgba(245,239,224,0.25); }
.mf-copy a { color: var(--gold-dark); text-decoration: none; }
.mf-links { display: flex; gap: 24px; }
.mf-links a { font-family: var(--sans); font-size: 11px; font-weight: 300; color: rgba(245,239,224,0.35); text-decoration: none; transition: color 0.3s; }
.mf-links a:hover { color: var(--gold); }
.mf-payments { display: flex; gap: 8px; flex-wrap: wrap; }

/* responsive */
@media (max-width: 1000px) {
  .mf-enquiry-inner { grid-template-columns: 1fr; gap: 50px; }
  .mf-divider { display: none; }
  .mf-enquiry { padding: 70px 40px; }
  .mf-bottom { padding: 20px 40px; }
}
@media (max-width: 768px) {
  .mf-enquiry { padding: 56px 24px; }
  .mf-bottom { padding: 20px 24px; }
  .mf-form-row { grid-template-columns: 1fr; }
  .mf-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mf-links { flex-wrap: wrap; gap: 14px; }
  .mf-form-btn { width: 100%; text-align: center; justify-content: center; }
}
/* ===== FOOTER ===== */
/* payment badges (shared) */
.payment-badge { height: 22px; padding: 4px 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: 3px; font-family: var(--sans); font-size: 9px; font-weight: 700; color: rgba(245,239,224,0.45); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.65; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; animation: revealFallback 0s ease 1.5s forwards; }
@keyframes revealFallback { to { opacity: 1; transform: none; } }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .itin-card { flex: 0 0 33.333%; min-width: 33.333%; }
}
@media (max-width: 1000px) {
  nav, nav.scrolled { padding: 0 28px; }
  .nav-links { gap: 16px; }
  .hero-content { padding: 0 40px; }
  .itin-card { flex: 0 0 50%; min-width: 50%; }
  .intro { grid-template-columns: 1fr; }
  .intro-image { min-height: 260px; }
  .intro-text { padding: 40px 40px; }
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: 1; grid-column: 1/3; height: 300px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,18,8,0.99); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav-links.mobile-open { display: flex; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .hero-content { padding: 0 28px; }
  .hero-scroll-indicator { left: 28px; }
  .hero-dots { right: 28px; }
  .itineraries-header { padding: 0 24px; }
  .itineraries-header-inner { flex-direction: column; align-items: flex-start; }
  .itin-nav { top: 96px; right: 24px; }
  .itin-card { flex: 0 0 48vw; min-width: 48vw; height: 380px; }
  .itin-hover-title { font-size: 18px; }
  .itin-hover-desc { font-size: 11px; }
  .itin-hover-meta { gap: 12px; }
  .itin-default-title { font-size: 16px; }
  .itin-pips { padding: 16px 24px 0; }
  .destinations, .why-us, .testimonials, .contact { padding: 80px 28px; }
  .destinations-header { flex-direction: column; align-items: flex-start; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; height: 280px; }
  .cta-text { padding: 56px 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 56px 28px 28px; }
  .intro-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); height: auto; }
  .gallery-strip-item { height: 160px; }
}
