/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --terracotta: #B33C0A;
  --terracotta-dark: #8F2F08;
  --gold: #D4A017;
  --gold-light: #E8C56E;
  --midnight: #1A2744;
  --midnight-dark: #0F1828;
  --sand: #F5EDD8;
  --sand-dark: #EBD9B4;
  --cream: #FDFAF4;
  --charcoal: #2C2420;
  --muted: #7A6B60;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.92);
  --glass-border: rgba(0,0,0,0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(28, 18, 10, 0.12);
  --shadow-lg: 0 20px 60px rgba(28, 18, 10, 0.22);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--midnight); color: var(--sand); }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin: 8px 0 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn--primary { background: var(--terracotta); color: var(--white); border: 1.5px solid var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #a97820; transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--terracotta); }
.btn--white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass);
  box-shadow: 0 1px 20px rgba(44,36,32,0.06);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(44,36,32,0.10);
  border-bottom: 1px solid var(--glass-border);
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 42px !important; width: auto !important; max-width: none !important; }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.navbar-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #8B6914;
  text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--charcoal);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--terracotta); background: rgba(179,60,10,0.05); }
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 9px 18px !important;
  margin-left: 18px !important;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; }

/* WP nav menu — reset & dropdowns */
.nav-links .menu-item { list-style: none; position: relative; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(44,36,32,0.12);
  padding: 6px 0;
  list-style: none;
  z-index: 300;
}
.nav-links .menu-item-has-children:hover > .sub-menu { display: block; }
.nav-links .sub-menu li { list-style: none; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 12px;
  border-radius: 0;
  white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: rgba(179,60,10,0.06); color: var(--terracotta); }

/* Dropdown arrow indicator */
.nav-links .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

.navbar-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger { width: 24px; height: 2px; background: var(--charcoal); display: block; position: relative; transition: var(--transition); }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--charcoal); transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.navbar.mobile-open .hamburger { background: transparent; }
.navbar.mobile-open .hamburger::before { top: 0; transform: rotate(45deg); background: var(--charcoal); }
.navbar.mobile-open .hamburger::after { top: 0; transform: rotate(-45deg); background: var(--charcoal); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-dark);
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--terracotta); }
.mobile-nav-overlay .nav-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  font-size: 14px !important;
  padding: 14px 28px !important;
  border-bottom: none;
  border-radius: var(--radius) !important;
}

/* ============================================================
   LANGUAGE SWITCHER — NAVBAR
============================================================ */
.nav-lang-switcher { position: relative; margin-left: 4px; }
.nav-lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.nav-lang-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.nav-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 150px;
  z-index: 300;
  overflow: hidden;
}
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.2s;
}
.nav-lang-dropdown a:hover { background: rgba(193,68,14,0.06); color: var(--terracotta) !important; }
.nav-lang-dropdown a.lang-active { font-weight: 600 !important; color: var(--terracotta) !important; }
.lang-flag { font-size: 18px; line-height: 1; }

/* ============================================================
   LANGUAGE BAR — MOBILE NAV
============================================================ */
.mobile-lang-bar {
  display: flex; gap: 16px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-lang-bar a {
  display: flex; align-items: center; gap: 6px;
  font-size: 1rem !important; font-weight: 500 !important;
  color: var(--charcoal) !important; opacity: 0.6; transition: opacity 0.2s;
}
.mobile-lang-bar a:hover, .mobile-lang-bar a.lang-active { opacity: 1; }
.mobile-lang-bar a.lang-active { color: var(--terracotta) !important; font-weight: 600 !important; }
.mobile-lang-bar .lang-flag { font-size: 22px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
  filter: brightness(0.85) contrast(1.1);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 24, 40, 0.82) 0%,
    rgba(26, 39, 68, 0.55) 50%,
    rgba(193, 68, 14, 0.25) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle, rgba(245,237,216,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: sandDrift 60s linear infinite;
  pointer-events: none;
}
@keyframes sandDrift { 0% { background-position: 0 0; } 100% { background-position: 200px 200px; } }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 760px;
  margin-left: 10%;
  animation: heroFadeUp 1.2s 0.2s both ease-out;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,0.2);
  border: 1px solid rgba(200,146,42,0.5);
  color: var(--gold-light);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '★'; font-size: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245, 237, 216, 0.88);
  font-weight: 300;
  margin: 20px 0 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: stretch; }
.hero-actions .btn { flex: 1 1 0; min-width: 180px; max-width: 280px; justify-content: center; text-align: center; }
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { max-width: 100%; width: 100%; min-width: 0; }
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  animation: bounce 2.4s infinite;
  cursor: pointer;
}
.hero-scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--midnight); padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,146,42,0.12);
  border-radius: 10px;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-text strong { display: block; color: var(--white); font-size: 15px; font-weight: 600; line-height: 1.2; }
.trust-text span { font-size: 11.5px; color: rgba(245,237,216,0.55); }

/* ============================================================
   AIO QUICK ANSWER BLOCK
============================================================ */
.quick-answer {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin-bottom: 48px;
  max-width: 780px;
}
.quick-answer p { font-size: 15px; color: var(--charcoal); line-height: 1.7; font-weight: 300; }
.quick-answer strong { font-weight: 600; color: var(--charcoal); }
.quick-answer-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; display: block; }

/* ============================================================
   TRIP FINDER
============================================================ */
.trip-finder { background: var(--terracotta); padding: 32px 0; display: none !important; }
.trip-finder-inner { display: flex; gap: 12px; align-items: flex-end; }
.tf-group { flex: 1; }
.tf-group label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 6px;
}
.tf-group select, .tf-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}
.tf-group select:focus, .tf-group input:focus {
  outline: none; border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.22);
}
.tf-group select option { background: var(--midnight); color: var(--white); }
.trip-finder .btn { white-space: nowrap; padding: 13px 32px; background: var(--midnight); color: var(--white); height: 48px; flex-shrink: 0; }
.trip-finder .btn:hover { background: var(--midnight-dark); transform: none; box-shadow: none; }

/* ============================================================
   FILTER STATUS
============================================================ */
.filter-status {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding: 10px 18px;
  background: rgba(212,160,23,0.06);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 13.5px; color: var(--charcoal);
  transition: background 0.3s;
}
.filter-status.has-filters { background: rgba(212,160,23,0.12); }
.filter-status strong { color: var(--terracotta); }
.filter-reset {
  background: none; border: none; color: var(--terracotta);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.filter-reset:hover { color: var(--terracotta-dark); }
.no-tours-msg { grid-column: 1 / -1; text-align: center; padding: 60px 24px; color: var(--muted); }
.no-tours-msg h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; color: var(--charcoal); }
.no-tours-msg p { font-size: 14px; margin-bottom: 20px; }
.no-tours-msg .btn { font-size: 12px; }
.tour-card.filtered-out { display: none !important; }
.tf-active-dot { position: absolute; top: -4px; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); display: none; }
.trip-finder-inner { position: relative; }

/* ============================================================
   TOUR TABS & GRID
============================================================ */
.desktop-tours-tabs { margin-bottom: 40px; display: flex; }
.mobile-tours-tabs { display: none; }
.tours-tabs-container { margin-bottom: 40px; }
.tours-tabs {
  flex-wrap: wrap; justify-content: center; gap: 4px;
  border-bottom: 1px solid var(--sand-dark); padding-bottom: 0;
}
.primary-tabs { display: flex; margin-bottom: 12px; border-bottom: none; }
.secondary-tabs { display: none; }
.secondary-tabs.active { display: flex; }
.tour-tab {
  position: relative; background: none; border: none;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); padding: 14px 20px;
  cursor: pointer; transition: var(--transition);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tour-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 0; height: 3px;
  background: var(--gold); border-radius: 3px 3px 0 0; transition: width 0.4s ease;
}
.tour-tab:hover { color: var(--charcoal); }
.tour-tab.active { color: var(--terracotta); border-bottom-color: transparent; }
.tour-tab.active::after { width: 100%; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card {
  position: relative; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column; height: 440px;
}
.tour-card::after {
  content: ''; position: absolute; top: -50%; left: -100%;
  width: 50%; height: 300%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg); transition: left 0.7s;
  pointer-events: none; z-index: 3;
}
.tour-card:hover::after { left: 200%; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card[hidden] { display: none; }
.tour-card-img { position: relative; height: 200px; overflow: hidden; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--terracotta); color: var(--white);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.tour-badge--shared { background: var(--midnight); }
.tour-badge--trekking { background: #3a7a44; }
.tour-badge--daytrip { background: var(--gold); }
.tour-duration {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: var(--white);
  font-size: 11px; font-weight: 500; padding: 4px 10px;
  border-radius: 100px; backdrop-filter: blur(4px);
}
.tour-price-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(179,60,10,0.92); color: white;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25); z-index: 2;
  backdrop-filter: blur(4px);
}
.tour-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.tour-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; line-height: 1.25; }
.tour-card-title a { color: var(--charcoal); transition: color 0.2s; }
.tour-card-title a:hover { color: var(--terracotta); }
/* Stretched link — makes the entire card clickable */
.tour-card-title a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.tour-card { cursor: pointer; }
.tour-card-desc {
  font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; font-weight: 300;
  flex: 1; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--sand-dark); margin-top: auto; }
.tour-price { font-family: var(--font-display); }
.tour-price .from { font-size: 11px; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.tour-price .amount { font-size: 1.5rem; font-weight: 700; color: var(--terracotta); line-height: 1; }
.tour-reviews { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.tour-reviews span { font-size: 11px; color: var(--muted); }
.tours-cta {
  display: flex; justify-content: center; align-items: stretch;
  gap: 12px; margin-top: 40px; flex-wrap: wrap;
}
.tours-cta .btn {
  flex: 1 1 0; max-width: 320px; min-width: 200px;
  justify-content: center; text-align: center;
  white-space: nowrap; box-sizing: border-box;
}
@media (max-width: 480px) {
  .tours-cta { flex-direction: column; align-items: center; }
  .tours-cta .btn { max-width: 100%; width: 100%; min-width: 0; }
}

/* ============================================================
   COMPARISON TABLE
============================================================ */
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 32px;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.comparison-table thead { background: var(--midnight); color: var(--sand); }
.comparison-table th { font-family: var(--font-display); font-size: 1rem; font-weight: 600; padding: 16px 20px; text-align: left; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--sand-dark); color: var(--charcoal); line-height: 1.5; font-weight: 300; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(245,237,216,0.35); }
.comparison-label { font-weight: 600; color: var(--charcoal); white-space: nowrap; }

.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  text-align: center; padding: 36px 24px 32px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(245,237,216,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.why-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,146,42,0.25); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-accent { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; line-height: 1; }
.why-accent span { font-size: 1rem; font-weight: 400; color: var(--gold-light); }
.why-icon { width: 48px; height: 48px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(200,146,42,0.12); border-radius: 50%; color: var(--gold-light); }
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--sand); margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: rgba(245,237,216,0.6); font-weight: 300; line-height: 1.6; }

/* ============================================================
   EXPERIENCE SPLIT SECTION
============================================================ */
.experience { display: grid; grid-template-columns: 1fr 1fr; }
.experience-img { position: relative; min-height: 500px; overflow: hidden; }
.experience-img img { width: 100%; height: 100%; object-fit: cover; }
.experience-content { background: var(--sand); display: flex; align-items: center; padding: 80px 64px; }
.experience-content .section-subtitle { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.experience-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
.stat { border-left: 3px solid var(--gold); padding-left: 16px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--terracotta); line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); }
.author-byline { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--sand-dark); }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 18px; flex-shrink: 0; }
.author-info { font-size: 13px; color: var(--muted); line-height: 1.5; }
.author-info strong { display: block; color: var(--charcoal); font-size: 14px; font-weight: 600; }
.author-info a { color: var(--terracotta); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 5rem; color: var(--sand-dark); position: absolute; top: 8px; left: 20px; line-height: 1; }
.testimonial-text { font-size: 14.5px; color: var(--charcoal); font-style: italic; font-family: var(--font-display); font-weight: 400; line-height: 1.7; margin-bottom: 20px; padding-top: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--sand-dark); display: flex; align-items: center; justify-content: center; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar-initials { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 14px; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 13.5px; }
.testimonial-meta { font-size: 12px; color: var(--muted); }
.platform-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; margin-top: 3px; color: var(--terracotta); transition: color 0.2s; }
a.platform-badge:hover { color: var(--terracotta-dark); }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; padding: 22px 0;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--charcoal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--terracotta); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terracotta); color: white; }
.faq-answer { display: none; font-size: 14.5px; color: var(--muted); line-height: 1.75; padding: 0 0 22px; font-weight: 300; }
.faq-answer.visible { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   BLOG / GUIDES
============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--sand-dark); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; }
.blog-category { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.blog-card-title a { color: var(--charcoal); }
.blog-card-title a:hover { color: var(--terracotta); }
.blog-card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.blog-card-link { text-decoration: none; color: inherit; display: block; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta) 0%, #9A3509 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 36px; font-weight: 300; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--white); color: var(--muted); padding: 64px 0 0; border-top: 1px solid var(--sand-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand-logo img { height: 36px; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.7; font-weight: 300; margin: 16px 0 24px; color: var(--muted); }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--sand-dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--muted); }
.social-icon:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.footer-heading { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13.5px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta); }
.footer-bottom { border-top: 1px solid var(--sand-dark); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--terracotta); }

/* ============================================================
   LANGUAGE BAR — FOOTER
============================================================ */
.footer-lang-bar { display: flex; gap: 8px; }
.footer-lang-link { display: flex; align-items: center; gap: 5px; padding: 6px 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); font-size: 12px; font-weight: 500; color: var(--muted); transition: var(--transition); }
.footer-lang-link:hover { border-color: var(--gold); color: var(--charcoal); }
.footer-lang-link.lang-active { border-color: var(--gold); color: var(--charcoal); background: rgba(212,160,23,0.08); }
.footer-lang-link .lang-flag { font-size: 16px; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 0 20px 0 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white); border: none; cursor: pointer;
  border-radius: 50px; box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; height: 56px; overflow: hidden;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-float-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(255,255,255,0.15); border-radius: 50%; }
.whatsapp-float-icon svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float-text { display: flex; flex-direction: column; line-height: 1.2; }
.whatsapp-float-text strong { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.whatsapp-float-text span { font-family: var(--font-display); font-size: 12.5px; font-weight: 400; font-style: italic; opacity: 0.9; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed; bottom: 100px; right: 32px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(193,68,14,0.3);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--terracotta-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1920px) {
  .navbar-logo-text { display: none; }
}

@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .nav-links, .nav-lang-switcher { display: none; }
  .navbar-mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 14px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }
}
@media (max-width: 900px) {
  .desktop-tours-tabs { display: none !important; }
  .mobile-tours-tabs { display: block; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .experience { grid-template-columns: 1fr; }
  .experience-img { min-height: 300px; }
  .experience-content { padding: 48px 32px; }
  .trip-finder-inner { flex-wrap: wrap; }
  .trip-finder .btn { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero-content { padding: 0 24px; margin-left: 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .experience-stats { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .tour-tab { padding: 8px 10px !important; }
}
@media (max-width: 480px) {
  .whatsapp-float { padding: 0; width: 56px; right: 12px; bottom: 62px; }
  .whatsapp-float-text { display: none; }
  .back-to-top	{ bottom: 120px; right: 20px; }
}

/* Mobile Sub Menu Support - Slide Over */
.mobile-nav-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-overlay li {
  position: relative;
}
.mobile-nav-overlay .mobile-primary-menu > li > a {
  display: block;
  padding-right: 40px; /* Space for the arrow */
}
.mobile-nav-overlay .sub-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-overlay .sub-menu.slide-open {
  transform: translateX(0);
}
.mobile-nav-overlay .mobile-back-btn {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mdt-navy, #1F2E59);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--mdt-orange, #F79320);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-overlay .mobile-back-btn::before {
  content: "←";
  font-size: 1.6rem;
  margin-top: -2px;
}
.mobile-nav-overlay .sub-menu a {
  font-size: 1.3rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-dark, #e6d8c3);
}
.mobile-nav-overlay .mobile-toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 52px; /* standard height */
  border: none;
  background: transparent;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mobile-nav-overlay .mobile-toggle-btn::after {
  content: "›"; /* Chevron right */
  font-family: inherit;
  font-weight: 600;
  font-size: 1.8rem;
  opacity: 0.5;
}

