/* ============================================
   Safari World Africa — Main Stylesheet
   Palette: Cream & Gold with Safari Earth Tones
   ============================================ */

/* --- CSS Variables --- */
:root {
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-dark: #8B6508;
  --brown: #4A3728;
  --brown-light: #6B5344;
  --brown-dark: #2E221A;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text: #3D3027;
  --text-light: #7A6B5D;
  --overlay: rgba(26, 26, 26, 0.55);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.18);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 116px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--brown);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
  height: var(--nav-height);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

/* ── Logo: full banner height, anchored left ── */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 12px 0;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: calc(var(--nav-height) - 24px);
  width: auto;
  filter: brightness(0.3) sepia(1) saturate(3) hue-rotate(5deg);
}

.nav-logo .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 1px;
}

/* ── Right section: tagline centred above, links below ── */
.nav-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 6px;
  min-width: 0;
  padding: 10px 0 8px;
}

/* ── Tagline: large, centred above menu ── */
.nav-tagline-bar {
  display: block;
  width: 100%;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 5px;
  color: var(--gold-dark);
  text-align: center;
  white-space: nowrap;
  padding-bottom: 5px;
}

/* ── Nav links: below tagline, fine gold rule separates ── */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  list-style: none;
  padding-top: 2px;
  width: 100%;
}

.nav-links a {
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA button spacing */
.nav-links li:last-child {
  margin-left: 4px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 3;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--brown);
  transition: all var(--transition);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
}

.dropdown a:hover {
  background: var(--cream);
  color: var(--gold-dark);
}

.dropdown a::after { display: none; }

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold-light);
  text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 36px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Sections --- */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-bottom: 16px; }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-brown { background: var(--brown); color: var(--cream); }
.bg-brown h2, .bg-brown h3 { color: var(--cream); }
.bg-brown p { color: rgba(253, 248, 240, 0.8); }

/* --- Tour Cards --- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tour-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img { transform: scale(1.05); }

.tour-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tour-card-price {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.tour-card-body { padding: 24px; }

.tour-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.tour-card-meta span { display: flex; align-items: center; gap: 4px; }

.tour-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.tour-card-link {
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-card-link:hover { gap: 10px; }

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
}

.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--cream-dark);
  border-radius: 50%;
  color: var(--gold);
}

.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { font-size: 0.95rem; color: var(--text-light); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-info { font-size: 0.9rem; }
.testimonial-author-info strong { display: block; color: var(--brown); }
.testimonial-author-info span { color: var(--text-light); font-size: 0.85rem; }

.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }

/* Review source badge */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.review-source svg { flex-shrink: 0; }

/* Review platforms bar */
.review-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e8e0d4;
}
.review-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--brown);
  transition: transform 0.2s;
}
.review-platform:hover { transform: translateY(-2px); }
.review-platform-rating {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.review-platform-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.review-platform-name { font-size: 0.85rem; color: var(--text-light); }

/* Leave a review CTA */
.review-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.review-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.review-cta a:hover {
  background: var(--gold);
  color: var(--white);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner .hero-overlay {
  background: linear-gradient(135deg, rgba(74, 55, 40, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* --- Footer --- */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer p { color: rgba(253, 248, 240, 0.7); font-size: 0.95rem; line-height: 1.7; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(253, 248, 240, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(253, 248, 240, 0.5);
}

.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  display: block;
  text-align: center;
  margin-top: 8px;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; }

.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs span { margin: 0 8px; }

/* --- Itinerary Page --- */
.itinerary-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.itinerary-sidebar {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.itinerary-sidebar h3 { margin-bottom: 20px; }

.itinerary-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}

.itinerary-detail:last-of-type { border-bottom: none; }
.itinerary-detail strong { display: block; color: var(--brown); }

.day-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.day-card h3 { color: var(--gold-dark); margin-bottom: 8px; }
.day-card h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 12px; font-size: 1.1rem; }

/* --- FAQ --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question::after {
  display: none;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
  margin-left: 16px;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p { color: var(--text-light); line-height: 1.7; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 9997;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* Hide floating buttons while mobile menu is open so they don't poke through */
body.menu-open .whatsapp-float { display: none; }

@media (max-width: 600px) {
  .whatsapp-float { bottom: 88px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* --- Responsive --- */
/* Tablet: tighten nav spacing */
@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.88rem; }
  .nav-tagline-bar { font-size: 1.05rem; letter-spacing: 3px; }
  .nav-cta { padding: 7px 14px !important; font-size: 0.82rem !important; }
}

@media (max-width: 968px) {
  :root { --nav-height: 72px; }

  .nav-inner { padding: 0 16px; }
  .nav-logo { padding: 10px 0; }
  .nav-logo img { height: 48px; }
  .nav-right { flex-direction: row; justify-content: flex-end; align-items: center; gap: 0; padding: 0; flex: 1; }
  .nav-tagline-bar { display: block; font-size: 0.7rem; letter-spacing: 2px; text-align: left; flex: 1; padding: 0 12px; }
  .nav-links { display: none; border-top: none; padding-top: 0; width: auto; }
  .nav-toggle { display: flex; position: static; margin-right: 0; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-links li:last-child { margin-left: 0; }

  /* Mobile: collapse submenus by default, expand on tap */
  .has-dropdown { width: 100%; }
  .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .has-dropdown > a::after {
    content: "▾";
    display: inline-block !important;
    width: auto;
    height: auto;
    background: none;
    margin-left: 8px;
    font-size: 0.85em;
    color: var(--gold-dark);
    transition: transform var(--transition);
    position: static;
  }
  .has-dropdown.open > a::after { transform: rotate(180deg); }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .has-dropdown.open .dropdown {
    max-height: 600px;
    padding: 4px 0 8px 16px;
  }

  .tour-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .itinerary-overview { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .itinerary-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .review-platforms { flex-direction: column; gap: 24px; }
  .review-cta div { flex-direction: column; }
  .review-cta a { justify-content: center; width: 100%; }
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
