:root {
  --primary: #ca550f;
  --primary-dark: #b8480d;
  --primary-light: #e57a30;
  --primary-subtle: #fef6ef;
  --gold: #D4AF37;
  --gold-dark: #b8962e;
  --accent: #D4AF37;
  --orange: #ca550f;
  --bg: #F8F6F1;
  --bg-alt: #f3efe8;
  --white: #FFFFFF;
  --text: #1e1e1e;
  --text-light: #555555;
  --text-muted: #8a8a8a;
  --border: #e0dcd2;
  --shadow-card: 0 15px 50px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.12);
  --radius: 18px;
  --radius-lg: 24px;
  --font: 'Mazzard', 'Inter', -apple-system, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  height: var(--header-h);
}

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
@media (min-width: 1200px) {
  .header-inner { padding: 0 20px; }
}

.header-logo img { height: 50px; width: auto; }

.header-nav .nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-link {
  font-size: 13px; font-weight: 500; color: var(--text);
  padding: 6px 12px; border-radius: 4px;
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--accent); }

.header-whatsapp-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s;
}

.header-whatsapp-btn:hover { background: var(--primary-dark); transform: scale(1.03); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text); border-radius: 2px; transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu extras — hidden on desktop */
.nav-close, .nav-extras { display: none; }

/* ========== HERO ========== */
.ultra-hero {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
  font-family: var(--font);
}

.ultra-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}

.ultra-slide.active { opacity: 1; transform: scale(1); }

.ultra-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
}

.ultra-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 800px; padding: 20px;
}

.ultra-content h1 {
  font-size: 52px; margin-bottom: 10px; line-height: 1.15;
  opacity: 0; transform: translateY(20px);
  letter-spacing: 0.5px; text-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.ultra-content p {
  font-size: 18px; margin-bottom: 25px;
  opacity: 0; color: #f1f1f1; line-height: 1.6;
  transform: translateY(20px);
}

.ultra-btn {
  display: inline-block; padding: 12px 26px;
  border-radius: 30px; border: 1px solid #fff; color: #fff;
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: 0.3s; opacity: 0; transform: translateY(20px);
}

.ultra-btn:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.05); }

.ultra-slide.active h1 { animation: fadeUp 1s ease forwards 0.3s; }
.ultra-slide.active p { animation: fadeUp 1s ease forwards 0.6s; }
.ultra-slide.active .ultra-btn { animation: fadeUp 1s ease forwards 0.9s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

.ultra-dots {
  position: absolute; bottom: 20px; width: 100%; text-align: center; z-index: 5;
}

.ultra-dot {
  width: 9px; height: 9px; margin: 0 5px;
  display: inline-block; border-radius: 50%;
  background: #aaa; cursor: pointer; transition: 0.3s;
}

.ultra-dot.active { background: var(--accent); transform: scale(1.3); }

/* ========== TAGLINE + CARDS ========== */
.tagline-section {
  padding: 60px 0; text-align: center;
  max-width: 1200px; margin: 0 auto;
}

.tagline-heading {
  font-size: 32px; font-weight: 700; color: var(--primary);
  margin-bottom: 12px; line-height: 1.2;
}

.tagline-text {
  max-width: 700px; margin: 0 auto 40px;
  color: var(--text-light); font-size: 15px; line-height: 1.6;
}

.hero-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}

.hero-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 265px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center; transition: 0.4s ease; cursor: pointer;
}

.hero-card:hover { transform: translateY(-8px); }

.hero-card img {
  position: absolute; width: 100%; height: 100%;
  object-fit: cover; top: 0; left: 0; z-index: 1;
}

.hero-overlay {
  position: absolute; width: 100%; height: 100%;
  top: 0; left: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  z-index: 2;
}

.hero-card-content { position: relative; z-index: 3; padding: 20px; }

.hero-card-content h2 { font-size: 24px; margin-bottom: 6px; }

.hero-card-content p { font-size: 14px; margin-bottom: 16px; color: rgba(255,255,255,0.9); }

.hero-btn {
  display: inline-block; padding: 9px 16px;
  border: 1px solid #fff; border-radius: 30px;
  text-decoration: none; color: #fff; font-size: 13px; transition: 0.3s;
}

.hero-btn:hover { background: var(--accent); border-color: var(--accent); }

/* ========== DESTINATIONS ========== */
.destinations-section {
  background: #f8f6f1; padding: 60px 0;
}
.tz-title {
  text-align: center; font-size: 34px; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
}

.tz-sub {
  text-align: center; color: var(--text-light);
  margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}

.tz-row { display: grid; gap: 15px; margin-bottom: 15px; }
.tz-row-1 { grid-template-columns: 2fr 1fr; }
.tz-row-2 { grid-template-columns: 1fr; }
.tz-row-3 { grid-template-columns: repeat(3, 1fr); }

.tz-card {
  position: relative; height: 260px; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tz-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; display: block; }
.tz-card:hover img { transform: scale(1.06); }

.tz-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
  padding: 20px; display: flex; flex-direction: column; justify-content: flex-end;
}

.tz-overlay h3 { color: #fff; margin: 0; font-size: 18px; }
.tz-overlay p { color: #ddd; font-size: 13px; margin-top: 5px; }

.tz-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  color: #fff; font-size: 12px; padding: 6px 12px;
  border-radius: 20px; font-weight: 600; z-index: 3;
}

/* ========== PACKAGES ========== */
.packages-section {
  background: #f8f6f1; padding: 60px 0;
}

.packages-heading {
  text-align: center; font-size: 32px; font-weight: 700;
  color: var(--primary); margin-bottom: 12px;
}

.packages-sub {
  text-align: center; color: var(--text-light);
  max-width: 780px; margin: 0 auto 40px; font-size: 15px; line-height: 1.7;
}

.packages-wrapper {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}

.package-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card); transition: 0.6s; position: relative;
  border: 1px solid var(--border);
}

.package-card:hover { transform: translateY(-8px); }

.package-card img { width: 100%; height: 240px; object-fit: cover; }

.pkg-badge {
  position: absolute; top: 15px; left: 15px;
  background: linear-gradient(120deg, var(--primary), var(--gold));
  color: #fff; font-size: 11px; padding: 6px 12px;
  border-radius: 30px; z-index: 2; font-weight: 600;
}

.pkg-discount {
  position: absolute; top: 15px; right: 15px;
  background: #111; color: #fff; font-size: 11px;
  padding: 6px 10px; border-radius: 20px; z-index: 2;
}

.pkg-content { padding: 18px; }

.pkg-days { font-size: 12px; color: var(--text-muted); }

.pkg-title { font-size: 17px; margin: 8px 0; line-height: 1.3; font-weight: 600; color: var(--text); }

.pkg-rating { font-size: 13px; color: #f59e0b; margin-bottom: 10px; letter-spacing: 2px; }

.pkg-footer {
  border-top: 1px dashed rgba(0,0,0,0.12);
  padding-top: 12px; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}

.pkg-price strong { font-size: 20px; color: var(--primary); display: block; }
.pkg-price span { font-size: 11px; color: var(--text-muted); }

.pkg-btn {
  padding: 8px 14px; border-radius: 30px;
  border: 1px solid rgba(202,85,15,0.3); color: var(--primary);
  text-decoration: none; white-space: nowrap; font-size: 13px; font-weight: 500; transition: 0.3s;
}

.pkg-btn:hover { background: var(--primary); color: #fff; }

.pkg-dots { display: none; justify-content: center; gap: 8px; margin-top: 20px; }

.pkg-dot { width: 8px; height: 8px; background: #d1d5db; border-radius: 50%; transition: 0.3s; cursor: pointer; }
.pkg-dot.active { width: 22px; background: var(--primary); }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 60px 0; text-align: center;
  max-width: 900px; margin: 0 auto;
}

.testimonials-heading {
  font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 12px;
}

.testimonials-sub {
  color: var(--text-light); max-width: 700px; margin: 0 auto 50px; font-size: 15px; line-height: 1.7;
}

.testimonials-slider { position: relative; overflow: hidden; }

.testimonial-card { display: none; text-align: center; padding: 20px; }
.testimonial-card.active { display: block; animation: fadeIn 0.5s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-stars { font-size: 22px; color: #f59e0b; margin-bottom: 20px; letter-spacing: 4px; }

.testimonial-quote {
  font-size: 20px; font-style: italic; color: var(--text);
  line-height: 1.7; margin-bottom: 30px; max-width: 650px; margin-left: auto; margin-right: auto;
}

.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }

.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px; flex-shrink: 0;
}

.testimonial-info { text-align: left; }
.testimonial-info strong { display: block; font-size: 16px; color: var(--primary); }
.testimonial-info span { font-size: 13px; color: var(--text-muted); }

.testimonials-nav { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }

.tdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d1d5db; cursor: pointer; transition: 0.3s;
}

.tdot.active { background: var(--accent); transform: scale(1.3); }

/* ========== BLOG ========== */
.blog-section {
  background: #f8f6f1; padding: 60px 0;
}

.blog-heading {
  text-align: center; font-size: 32px; font-weight: 700;
  color: var(--primary); margin-bottom: 12px;
}

.blog-sub {
  text-align: center; color: var(--text-light);
  max-width: 650px; margin: 0 auto 40px; font-size: 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px; max-width: 1200px; margin: 0 auto;
}

.blog-card {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 260px; cursor: pointer; display: block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

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

.blog-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}

.blog-card:hover .blog-img { transform: scale(1.08); }

.blog-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.blog-title { color: #fff; font-size: 15px; font-weight: 600; display: block; line-height: 1.3; }

.blog-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 10px; padding: 5px 9px; border-radius: 20px;
  letter-spacing: 1px; font-weight: 600;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 60px 0; background: var(--white);
}

.faq-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
}

.faq-heading {
  font-size: 24px; font-weight: 700; color: var(--primary);
  margin-bottom: 25px; line-height: 1.3;
}

.faq-item {
  border-radius: 14px; margin-bottom: 9px;
  overflow: hidden; background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.faq-item.active { border-color: var(--accent); background: #fffdf7; }

.faq-question {
  padding: 18px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: 0.3s; font-size: 15px;
}

.faq-question::after {
  content: '+'; font-size: 20px; color: var(--accent);
  transition: 0.3s; font-weight: 400;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-item.active .faq-question { color: var(--accent); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: 0.4s ease; padding: 0 18px;
  color: var(--text-light); font-size: 14px; line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 300px; padding: 0 18px 18px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg); padding: 60px 24px 24px;
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.footer-brand h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.footer-col h4 {
  font-size: 16px; color: var(--primary); margin-bottom: 15px;
  position: relative; padding-bottom: 8px;
}

.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--accent);
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 14px; color: var(--text-light);
  padding-left: 18px; position: relative; display: inline-block;
}

.footer-links a::before {
  content: '\00BB'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

.footer-links a:hover { color: var(--primary); transform: translateX(4px); }

.footer-contact li {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 10px; display: flex; gap: 10px; align-items: center;
}

.footer-contact i { color: var(--accent); width: 16px; }

.footer-social { display: flex; gap: 8px; margin-top: 15px; }

.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,0.06); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: 0.3s;
}

.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-4px) scale(1.05); }

.footer-trust {
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; justify-content: center; gap: 15px;
  flex-wrap: wrap; margin-top: 50px; padding: 25px 0;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 12px;
  background: var(--white); font-size: 13px; color: var(--text);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.trust-item .fa-tripadvisor { color: #34e0a1; font-size: 18px; }
.trust-item .fa-google { color: #fbbc05; font-size: 16px; }
.trust-item .fa-shield-alt { color: var(--accent); font-size: 16px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0 24px;
  font-size: 13px; color: var(--text-light);
}

.footer-legal { display: flex; gap: 12px; }

.footer-legal a { color: var(--text-light); }
.footer-legal a:hover { color: var(--accent); }

/* ========== WHATSAPP WIDGET ========== */
.whatsapp-widget {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
}

.whatsapp-popup {
  position: absolute; bottom: 70px; right: 0;
  width: 300px; background: #fff;
  border-radius: 12px; box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  overflow: hidden; display: none;
}

.whatsapp-popup.open { display: block; }

.whatsapp-header {
  background: var(--primary); color: #fff;
  padding: 15px 18px; display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600;
}

.whatsapp-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

.whatsapp-body { padding: 20px; }

.whatsapp-msg {
  background: #f0f0f0; padding: 12px 16px; border-radius: 12px;
  font-size: 14px; color: var(--text); margin-bottom: 15px;
}

.whatsapp-start {
  display: block; text-align: center;
  background: #25D366; color: #fff;
  padding: 12px; border-radius: 8px; font-weight: 600; font-size: 14px;
}

.whatsapp-start:hover { background: #1DA851; }

.whatsapp-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; border: none;
  font-size: 28px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: 0.3s;
}

.whatsapp-toggle:hover { transform: scale(1.1); }

/* ========== WHY BOOK WITH US ========== */
.trust-section { padding: 60px 0; }
.trust-section h2 { text-align: center; font-size: 28px; color: var(--primary); margin-bottom: 12px; }
.trust-section .trust-sub { text-align: center; color: var(--text-light); max-width: 650px; margin: 0 auto 35px; font-size: 15px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.trust-card { background: var(--white); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-card); transition: 0.3s; border: 1px solid var(--border); }
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.trust-card i { font-size: 36px; color: var(--gold); margin-bottom: 14px; }
.trust-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== HOW TO BOOK ========== */
.steps-section { padding: 60px 0; background: var(--bg); }
.steps-section h2 { text-align: center; font-size: 28px; color: var(--primary); margin-bottom: 35px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.step-card { text-align: center; padding: 30px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card); position: relative; border: 1px solid var(--border); }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 6px; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========== CTA BANNER ========== */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 24px; text-align: center; color: #fff; }
.cta-banner h2 { font-size: 30px; margin-bottom: 10px; }
.cta-banner p { max-width: 600px; margin: 0 auto 24px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.cta-banner .cta-btn { display: inline-block; padding: 14px 32px; border-radius: 30px; background: var(--gold); color: var(--primary); font-weight: 700; font-size: 15px; transition: 0.3s; }
.cta-banner .cta-btn:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ========== ZANZIBAR ACTIVITIES ========== */
.zanzibar-activities { padding: 60px 0; }
.zanzibar-activities h2 { text-align: center; font-size: 28px; color: var(--primary); margin-bottom: 30px; }
.zanzibar-activities .section-container { max-width: 1100px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .tz-title { font-size: 28px; }
  .tz-row-1 { grid-template-columns: 1fr; }
  .tz-row-3 { grid-template-columns: repeat(2, 1fr); }
  .tz-card { height: 240px; }
  .faq-columns { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .hero-cards { grid-template-columns: 1fr; }
  .hero-card { height: 230px; }
  .packages-wrapper { grid-template-columns: 1fr; }
  .packages-wrapper { display: flex; overflow-x: auto; gap: 10px; scroll-snap-type: x mandatory; }
  .package-card { min-width: 85%; flex: 0 0 85%; scroll-snap-align: start; }
  .pkg-dots { display: flex; }
}

@media (max-width: 768px) {
  .site-header { --header-h: 70px; }

  .header-nav {
    position: fixed; top: 0; right: -100%; width: 280px;
    height: 100vh; background: #fff; padding: 80px 24px 30px;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s; z-index: 98;
  }

  .header-nav.open { right: 0; }

  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-link {
    padding: 11px 0 11px 24px; font-size: 15px; display: block;
    width: 100%; text-align: left;
    border-bottom: 2px dotted rgba(202,85,15,0.18);
    font-weight: 500;
  }
  .nav-link.active { font-weight: 600; color: var(--primary); }

  .header-actions { display: flex; align-items: center; margin-left: auto; margin-right: 8px; }
  .header-whatsapp-btn {
    padding: 6px 12px;
    font-size: 11px;
    white-space: nowrap;
  }
  .hamburger { display: flex; }

  /* Mobile menu extras */
  .nav-close {
    display: block; position: absolute; top: 14px; right: 16px;
    background: none; border: none; font-size: 18px;
    color: var(--text-light); cursor: pointer; padding: 4px 8px;
    border-radius: 6px; transition: 0.3s;
    z-index: 1;
  }
  .nav-close:hover { background: rgba(0,0,0,0.05); color: var(--primary); }

  .nav-extras {
    margin-top: 18px;
    padding-top: 8px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
  }

  .nav-whatsapp-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    color: #fff; background: #25D366;
    padding: 9px 18px; border-radius: 30px;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .nav-whatsapp-link i { font-size: 15px; }
  .nav-whatsapp-link:hover { background: #1da851; transform: scale(1.03); }

  .nav-plan-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    color: #fff; background: var(--primary);
    padding: 9px 18px; border-radius: 30px;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .nav-plan-link i { font-size: 15px; }
  .nav-plan-link:hover { background: var(--primary-dark); transform: scale(1.03); }

  .nav-social {
    display: flex; align-items: center; gap: 8px;
    margin-top: 4px;
    justify-content: center; width: 100%;
  }
  .nav-social-link {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-light); font-size: 14px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.08);
    text-decoration: none;
  }
  .nav-social-link:hover {
    color: #fff; background: var(--primary);
    border-color: var(--primary); transform: translateY(-2px);
  }

  .ultra-hero { height: 65vh; }
  .ultra-content h1 { font-size: 30px; line-height: 1.2; }
  .ultra-content p { font-size: 14px; }
  .ultra-btn { font-size: 13px; padding: 10px 18px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { height: 220px; }
}

@media (max-width: 600px) {
  .tagline-heading { font-size: 24px; }
  .packages-heading { font-size: 24px; }
  .testimonials-heading { font-size: 24px; }
  .blog-heading { font-size: 24px; }

  .tz-title { font-size: 24px; }
  .tz-sub { font-size: 14px; margin-bottom: 25px; }
  .tz-row-3 { grid-template-columns: 1fr; }
  .tz-card { height: 220px; }
  .tz-overlay h3 { font-size: 16px; }
  .tz-overlay p { font-size: 12px; }

  .testimonial-quote { font-size: 17px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-links a { padding-left: 0; }
  .footer-links a::before { display: none; }
  .footer-contact li { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 450px; }
  .cta-banner h2 { font-size: 24px; }
}

@media (max-width: 500px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ========== PAGE BANNER (shared by all inner pages) ========== */
.page-banner {
  margin-top: var(--header-h);
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
}
.page-banner h1 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs span { color: var(--text-muted); }
.page-banner p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}
.banner-sub {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.banner-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.banner-tags span {
  background: rgba(202,85,15,0.08);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.banner-tags i { margin-right: 6px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.required { color: #dc2626; }

/* ========== ABOUT PAGE ========== */
.about-intro {
  padding: 60px 0;
}
.about-intro .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-intro .label {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.about-intro h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-intro p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-intro img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about-mv {
  padding: 50px 24px;
  background: var(--bg);
}
.about-mv .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-mv-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.about-mv-card h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}
.about-mv-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.about-mv-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.about-values {
  padding: 60px 0;
  background: var(--white);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-value-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.about-value-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.about-value-item i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-value-item h4 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px;
}
.about-value-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.about-promise {
  padding: 60px 0;
  background: var(--bg);
}
.about-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-promise-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.about-promise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.icon-wrap i { font-size: 24px; color: #fff; }
.about-promise-card h4 { font-size: 17px; color: var(--primary); margin-bottom: 6px; }
.about-promise-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.about-stats {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 24px;
}
.about-stats .section-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.about-team-section { padding: 60px 0; }
.team-group { margin-bottom: 40px; }
.team-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.team-group-header i {
  font-size: 28px;
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-group-header h3 {
  font-size: 22px;
  color: var(--primary);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.team-member {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.team-member:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.team-member img { width: 100%; height: 220px; object-fit: cover; }
.team-member-content { padding: 20px; }
.team-member-content h4 { font-size: 18px; color: var(--primary); margin-bottom: 2px; }
.team-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.team-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.team-exp {
  font-size: 12px;
  color: #fff;
  background: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}

.about-services-short {
  padding: 60px 24px;
  background: var(--bg);
}
.about-services-short .section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-service-card {
  text-align: center;
  padding: 34px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.about-service-card:hover { transform: translateY(-5px); }
.about-service-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-service-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.about-service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.about-faq {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.about-faq h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}

/* ========== SAFARI PAGE ========== */
.safari-overview {
  padding: 50px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.safari-overview h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
}
.safari-overview p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.safari-destinations {
  padding: 60px 0;
  background: var(--bg);
}
.safari-destinations h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}
.safari-destinations > p {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.dest-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.dest-card h3 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.dest-card h3::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 22px;
}
.dest-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.safari-types {
  padding: 60px 24px;
}
.safari-types h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.type-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.type-card:hover { transform: translateY(-4px); }
.type-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}
.type-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.safari-image {
  padding: 0 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.safari-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.safari-packages {
  padding: 60px 0;
  background: var(--bg);
}
.safari-packages h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}
.safari-packages > .section-container > p {
  text-align: center;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
}
.safari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.safari-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.4s;
  position: relative;
  border: 1px solid var(--border);
}
.safari-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.safari-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.safari-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(120deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  font-weight: 600;
}
.safari-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #111;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}
.safari-body { padding: 18px; }
.safari-duration { font-size: 12px; color: var(--text-muted); }
.safari-title {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
}
.safari-rating { font-size: 13px; color: #f59e0b; margin-bottom: 10px; letter-spacing: 2px; }
.safari-footer {
  border-top: 1px dashed rgba(0,0,0,0.12);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.safari-price strong { font-size: 20px; color: var(--primary); display: block; }
.safari-price span { font-size: 11px; color: var(--text-muted); }
.safari-btn {
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(202,85,15,0.3);
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
}
.safari-btn:hover { background: var(--primary); color: #fff; }

.safari-season {
  padding: 60px 24px;
  max-width: 850px;
  margin: 0 auto;
}
.safari-season h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
  text-align: center;
}
.safari-season p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.safari-season .note {
  background: var(--primary-subtle);
  padding: 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  font-weight: 500;
}

.safari-faq {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.safari-faq h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}

/* ========== KILIMANJARO PAGE ========== */
.kili-intro, .kili-know {
  padding: 50px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.kili-intro h2, .kili-know h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
}
.kili-intro p, .kili-know p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.kili-intro ul { margin: 10px 0 10px 20px; }
.kili-intro li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 4px;
}
.kili-know {
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.kili-packages {
  padding: 60px 24px;
  background: var(--bg);
}
.kili-packages h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}
.kili-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.kili-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.4s;
  position: relative;
  border: 1px solid var(--border);
}
.kili-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.kili-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.kili-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(120deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  font-weight: 600;
}
.kili-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #111;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}
.kili-body { padding: 18px; }
.kili-duration { font-size: 12px; color: var(--text-muted); }
.kili-title {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
}
.kili-rating { font-size: 13px; color: #f59e0b; margin-bottom: 10px; letter-spacing: 2px; }
.kili-footer {
  border-top: 1px dashed rgba(0,0,0,0.12);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.kili-price strong { font-size: 20px; color: var(--primary); display: block; }
.kili-price span { font-size: 11px; color: var(--text-muted); }
.kili-btn {
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(202,85,15,0.3);
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
}
.kili-btn:hover { background: var(--primary); color: #fff; }

.kili-accommodation {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.kili-accommodation h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}
.kili-accommodation > .section-container > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.acc-type {
  margin-bottom: 30px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
}
.acc-type h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.acc-type h4 {
  font-size: 16px;
  color: var(--text);
  margin: 16px 0 8px;
}
.acc-type p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.acc-type ul { margin: 8px 0 8px 20px; }
.acc-type li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ========== KILIMANJARO GROUP DEPARTURES ========== */
.kili-groups {
  padding: 50px 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.groups-header {
  text-align: center;
  margin-bottom: 28px;
}
.groups-header h2 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 6px;
}
.groups-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 8px auto 0;
  border-radius: 2px;
}
.groups-header .groups-sub {
  color: var(--text-light);
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 14px;
}
/* --- table --- */
.groups-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.groups-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.groups-table thead {
  background: var(--primary);
  color: #fff;
}
.groups-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.groups-table th.th-avail { min-width: 130px; }
.groups-table th.th-action { text-align: center; width: 80px; }
.groups-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.groups-table tbody tr:last-child td { border-bottom: none; }
.groups-table tbody tr:hover { background: var(--primary-subtle); }
.groups-table tbody tr.row-full { opacity: 0.6; }
/* tour cell */
.td-tour strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}
.td-tour-route {
  display: inline-block;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 3px;
}
/* dates cell */
.td-date-range {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}
/* duration / price */
.td-duration, .td-price {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
/* availability bar */
.td-avail-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 170px;
}
.td-avail-bar {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.td-avail-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 3px;
  transition: width 0.4s ease;
}
.td-avail-label {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.td-avail-label.open { color: #27ae60; }
.td-avail-label.almost { color: #f39c12; }
.td-avail-label.full { color: #e74c3c; }
/* status badges */
.td-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.td-badge.available {
  background: #e8f8f0;
  color: #27ae60;
}
.td-badge.almost {
  background: #fef9e7;
  color: #f39c12;
}
.td-badge.full {
  background: #fdecea;
  color: #e74c3c;
}
.td-badge.confirmed {
  background: #eaf2ff;
  color: #2d7ee1;
}
/* action button */
.td-action { text-align: center; }
.td-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.td-btn:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.05);
}
/* bottom CTA */
.groups-cta-bottom {
  text-align: center;
  margin-top: 24px;
}
.groups-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.groups-wa-cta:hover {
  background: #25D366;
  color: #fff;
}
/* responsive: card layout on mobile */
@media (max-width: 768px) {
  .kili-groups { padding: 30px 12px; }
  .groups-header { margin-bottom: 20px; }
  .groups-header h2 { font-size: 20px; }
  .groups-header .groups-sub { font-size: 13px; }
  .groups-table-wrap {
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .groups-table,
  .groups-table thead,
  .groups-table tbody,
  .groups-table th,
  .groups-table td,
  .groups-table tr { display: block; }
  .groups-table thead { display: none; }
  .groups-table tbody { display: flex; flex-direction: column; gap: 12px; }
  .groups-table tr {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .groups-table tr.row-full { opacity: 0.55; }
  .groups-table td {
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }
  .groups-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 72px;
    flex-shrink: 0;
  }
  .td-tour {
    flex-wrap: wrap;
    margin-bottom: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
  .td-tour::before { content: "Tour"; align-self: flex-start; }
  .td-tour strong { font-size: 15px; }
  .td-tour-route { font-size: 11px; margin-top: 2px; }
  .td-dates::before { content: "Dates"; }
  .td-date-range { font-weight: 700; font-size: 14px; color: var(--primary); }
  .td-duration::before { content: "Duration"; }
  .td-price::before { content: "Price"; }
  .td-duration, .td-price { font-weight: 600; }
  .td-avail::before { content: "Spots"; }
  .td-avail-bar-wrap { flex: 1; max-width: none; }
  .td-avail-label { font-size: 13px; }
  .td-status { gap: 4px; }
  .td-status::before { content: "Status"; }
  .td-badge { font-size: 11px; padding: 3px 10px; }
  .td-action {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    justify-content: center;
  }
  .td-action::before { content: none; }
  .td-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    border-radius: 25px;
  }
  .groups-cta-bottom { margin-top: 18px; }
  .groups-wa-cta { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13px; }
}

/* ========== ZANZIBAR PAGE ========== */
.zanzibar-intro {
  padding: 50px 24px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.zanzibar-intro h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}
.zanzibar-intro h2 span {
  display: block;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.zanzibar-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.zanzibar-gallery {
  padding: 40px 24px;
}
.zanzibar-gallery .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.zanzibar-gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  height: 300px;
  object-fit: cover;
}

.zanzibar-season {
  padding: 60px 24px;
  background: var(--bg);
}
.zanzibar-season .section-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.zanzibar-season h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}
.zanzibar-season p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ========== DAY TRIPS PAGE ========== */
.dt-intro {
  padding: 50px 24px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.dt-intro h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}
.dt-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.dt-trips {
  padding: 0 24px 60px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dt-trip-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .dt-trip-card { grid-template-columns: 1fr; }
}
.dt-trip-image {
  position: relative;
  min-height: 300px;
}
.dt-trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.dt-trip-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}
.dt-trip-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dt-label {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.dt-trip-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 10px;
}
.dt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.dt-meta i { margin-right: 4px; }
.dt-trip-content > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.dt-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
  padding: 0;
  list-style: none;
}
@media (max-width: 600px) {
  .dt-highlights { grid-template-columns: 1fr; }
}
.dt-highlights li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.dt-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.dt-btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  align-self: flex-start;
}
.dt-btn:hover { background: var(--primary-dark); transform: scale(1.03); }

.dt-cta {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-align: center;
  color: #fff;
}
.dt-cta h2 { font-size: 30px; margin-bottom: 10px; }
.dt-cta p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.dt-cta .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.dt-cta .cta-btn:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 60px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
  transition: 0.3s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(202,85,15,0.1);
}
.contact-form textarea { height: 130px; resize: vertical; }

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checkbox-group input { width: auto; margin-top: 3px; }
.checkbox-group label { font-weight: 400; font-size: 13px; }

.submit-btn {
  grid-column: 1 / -1;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover { background: var(--primary-dark); transform: scale(1.02); }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { font-size: 18px; color: var(--primary); }
.ci-content h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.ci-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.ci-content a { color: var(--primary); }
.ci-content a:hover { color: var(--primary-dark); }

.contact-map { padding: 0 24px 60px; }
.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-card);
  max-width: 1100px;
  margin: 0 auto;
  display: block;
}

.cta-cards { padding: 60px 0; background: var(--bg); }
.cta-cards h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cta-grid { grid-template-columns: 1fr; }
}
.cta-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.cta-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cta-card:hover img { transform: scale(1.06); }
.cta-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
  z-index: 1;
}
.cta-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.cta-card h3 { font-size: 20px; margin-bottom: 6px; }
.cta-card p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.cta-card .cta-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}
.cta-card .cta-btn:hover { background: var(--accent); border-color: var(--accent); }

/* ========== BLOG LISTING PAGE ========== */
.blog-intro {
  padding: 40px 24px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.blog-intro h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 30px;
}
.blog-section-title i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
.blog-section-title h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}
.blog-section-title span {
  font-size: 14px;
  color: var(--text-muted);
}

.blog-cta {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.blog-cta h2 { font-size: 30px; margin-bottom: 10px; }
.blog-cta p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.blog-cta .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.blog-cta .cta-btn:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ========== BLOG ARTICLE HERO ========== */
.blog-hero {
  margin-top: var(--header-h);
  position: relative;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}
.blog-hero .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px;
  max-width: 850px;
  margin: 0 auto;
  color: #fff;
  z-index: 2;
}
.blog-hero .tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.blog-hero .meta {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-hero .meta i { margin-right: 4px; }
.blog-hero .meta span { color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .blog-hero { height: 45vh; min-height: 300px; }
  .blog-hero h1 { font-size: 26px; }
}

/* ========== BLOG PROGRESS NAV ========== */
.blog-progress {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  overflow-x: auto;
}
.blog-progress-inner {
  display: flex;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 14px;
}
.blog-progress-inner a {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  flex-shrink: 0;
}
.blog-progress-inner a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ========== BLOG ARTICLE ========== */
.blog-article {
  max-width: 750px;
  margin: 40px auto;
  padding: 0 24px 60px;
}
.blog-article .lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 24px;
}
.blog-article h2 {
  font-size: 26px;
  color: var(--primary);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.blog-article h3 {
  font-size: 20px;
  color: var(--text);
  margin: 28px 0 10px;
}
.blog-article h4 {
  font-size: 17px;
  color: var(--primary);
  margin: 20px 0 8px;
}
.blog-article p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.blog-article ul,
.blog-article ol {
  margin: 12px 0 20px 24px;
}
.blog-article li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}
.blog-article strong { color: var(--text); }

.highlight-box {
  background: var(--primary-subtle);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
}
.highlight-box.success { border-left-color: #16a34a; background: #f0fdf4; }
.highlight-box.warning { border-left-color: #d97706; background: #fffbeb; }
.highlight-box p { margin-bottom: 0 !important; font-size: 14px !important; }

.season-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .season-overview { grid-template-columns: 1fr; }
}
.season-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.season-card i { font-size: 28px; margin-bottom: 10px; }
.season-card h4 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.season-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px !important; }
.months { font-size: 13px; color: var(--primary); }

.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.month-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.m-header {
  padding: 14px 16px;
  color: #fff;
}
.m-header h4 { font-size: 17px; margin: 0 0 2px; color: inherit !important; }
.m-header span { font-size: 12px; opacity: 0.85; }
.m-best { background: linear-gradient(135deg, #16a34a, #22c55e); }
.m-good { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.m-ok { background: linear-gradient(135deg, #d97706, #f59e0b); }
.m-poor { background: linear-gradient(135deg, #dc2626, #ef4444); }
.m-body { padding: 14px 16px; }
.m-stat {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.m-stat:last-child { border-bottom: none; }
.m-stat .label { color: var(--text-muted); }
.m-stat .value { color: var(--text); font-weight: 500; }
.m-rating {
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.badge-best { background: #f0fdf4; color: #16a34a; }
.badge-good { background: #eff6ff; color: #2563eb; }
.badge-ok { background: #fffbeb; color: #d97706; }
.badge-poor { background: #fef2f2; color: #dc2626; }

.quick-compare {
  overflow-x: auto;
  margin: 20px 0;
}
.quick-compare table { width: 100%; border-collapse: collapse; font-size: 14px; }
.quick-compare th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.quick-compare td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.quick-compare tr:nth-child(even) td { background: var(--bg); }
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot-best { background: #16a34a; }
.dot-good { background: #2563eb; }
.dot-ok { background: #d97706; }
.dot-poor { background: #dc2626; }

.route-season-wrap { overflow-x: auto; margin: 20px 0; }
.route-season-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.route-season-wrap th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.route-season-wrap td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.route-season-wrap tr:nth-child(even) td { background: var(--bg); }

.blog-cta-section {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.blog-cta-section h2 { font-size: 30px; margin-bottom: 10px; }
.blog-cta-section p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.blog-cta-section .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.blog-cta-section .cta-btn:hover { background: var(--gold-dark); transform: scale(1.04); }

.blog-sidebar {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}
.related-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.rc-body { padding: 14px; }
.rc-body h4 { font-size: 14px; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.rc-body span { font-size: 11px; color: var(--primary); font-weight: 600; letter-spacing: 1px; }

/* ========== BLOG PACKING GRID ========== */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.pack-card i { font-size: 28px; margin-bottom: 10px; display: block; }
.pack-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.pack-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 0 !important; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.cc-head {
  padding: 12px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.cc-head i { margin-right: 8px; }
.cc-body { padding: 14px 16px; }
.cc-body ul { margin: 0; padding: 0; list-style: none; }
.cc-body li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  line-height: 1.5;
}
.cc-body li i { margin-right: 6px; width: 16px; }

.tip-banner {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0;
  align-items: flex-start;
}
.tip-banner.pro {
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1px solid #93c5fd;
}
.tip-banner i {
  font-size: 28px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 4px;
}
.tip-banner h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.tip-banner p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 0 !important; }

.section-divider {
  text-align: center;
  margin: 40px 0;
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.section-divider i {
  background: var(--white);
  padding: 0 16px;
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 18px;
}

.dont-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  align-items: flex-start;
}
.dont-card i { color: #dc2626; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.dc-body h4 { font-size: 15px; color: var(--text); margin-bottom: 4px; }
.dc-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 0 !important; }

.checklist-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.checklist-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.checklist-table td { padding: 8px 14px; border-bottom: 1px solid var(--border); }
.checklist-table tr:nth-child(even) td { background: var(--bg); }
.chk { font-size: 16px; }
.tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.tag.essential { background: #fef2f2; color: #dc2626; }
.tag.recommended { background: #fffbeb; color: #d97706; }
.tag.optional { background: #f0fdf4; color: #16a34a; }

.season-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  .season-compare { grid-template-columns: 1fr; }
}
.season-compare .season-card { padding: 20px; }
.season-compare .season-card.dry { border-left: 4px solid #d97706; }
.season-compare .season-card.wet { border-left: 4px solid #2563eb; }
.season-compare .season-card ul { margin: 10px 0 0; padding: 0; list-style: none; }
.season-compare .season-card li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  line-height: 1.5;
}
.season-compare .season-card li i { margin-right: 6px; }

.share-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.share-section span { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; }
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
}
.share-btn:hover { transform: scale(1.15); }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000; }
.share-btn.wa { background: #25d366; }
.share-btn.pt { background: #e60023; }

.author-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  margin: 30px 0;
  align-items: center;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}
.author-info h4 { font-size: 16px; color: var(--primary); margin-bottom: 4px; }
.author-info p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 0 !important; }

/* ========== TOUR DETAIL PAGES (shared across safari/kili/zanzibar packages) ========== */
.tour-overview {
  padding: 50px 24px;
}
.tour-overview .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .tour-overview .section-container { grid-template-columns: 1fr; }
}
.to-label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.tour-overview h2 {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}
.tour-overview p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.tour-overview img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.tour-quick-info {
  background: var(--bg);
  padding: 30px 24px;
}
.tour-quick-info .section-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .tour-quick-info .section-container { grid-template-columns: repeat(2, 1fr); }
}
.qi-card {
  text-align: center;
  padding: 22px 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.qi-card i { font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.qi-value { font-size: 16px; font-weight: 600; color: var(--text); }
.qi-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.tour-itinerary {
  padding: 60px 0;
}

.itin-table-wrap { overflow-x: auto; margin: 0 24px 40px; }
.itin-table { width: 100%; border-collapse: collapse; font-size: 14px; max-width: 1000px; margin: 0 auto; display: table; }
.itin-table th {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.itin-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.itin-table tr:nth-child(even) td { background: var(--bg); }
.td-day { font-weight: 700; color: var(--primary); }
.td-group { font-weight: 500; }
.td-price { font-weight: 700; color: var(--primary); font-size: 16px; }

.itinerary-day {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 0 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .itinerary-day { flex-direction: column; }
}
.day-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 80px;
}
.day-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
.day-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.day-content { flex: 1; }
.day-content h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.day-meta i { margin-right: 4px; }
.day-content p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.tour-accommodation { padding: 60px 0; background: var(--bg); }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.acc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.acc-card:hover { transform: translateY(-4px); }
.acc-card img { width: 100%; height: 180px; object-fit: cover; }
.acc-body { padding: 18px; }
.acc-body h4 { font-size: 16px; color: var(--primary); margin-bottom: 2px; }
.acc-elevation { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.acc-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.tour-pricing { padding: 60px 0; }
.inc-exc-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.inc-exc-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.inc-exc-card.inc { border-color: #86efac; }
.inc-exc-card.exc { border-color: #fca5a5; }
.iec-header {
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
}
.inc .iec-header { background: #f0fdf4; color: #16a34a; }
.exc .iec-header { background: #fef2f2; color: #dc2626; }
.iec-header i { margin-right: 6px; }
.iec-body { padding: 14px 18px; }
.iec-body ul { margin: 0; padding: 0; list-style: none; }
.iec-body li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.iec-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.exc .iec-body li::before { content: '\2717'; color: #dc2626; }

.price-table-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.ptc-header {
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  border-bottom: 1px solid var(--border);
}
.ptc-header i { margin-right: 6px; }
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th {
  background: #f5f5f5;
  color: var(--text-color, #333);
  padding: 12px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}
.price-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.price-table tbody tr:hover td { background: #fff8f0; }
.price-table tbody tr:last-child td { border-bottom: none; }
.td-group { font-weight: 600; color: #333; }
.td-price { color: var(--primary); font-weight: 700; font-size: 15px; text-align: right; }
.price-table th:last-child { text-align: right; }

.pricing-action {
  margin-top: 16px;
  text-align: center;
}
.pa-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}
.pa-btn:hover { background: var(--primary-dark); transform: scale(1.03); }
.pa-btn i { margin-right: 8px; }

.tour-benefits { padding: 60px 0; background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.benefit-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.benefit-card h4 { font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.tour-pro-tips { padding: 60px 0; }

.tour-faq {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
.tour-faq h2 {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
  padding: 0 24px;
}
.tour-faq .faq-list { padding: 0 24px; }

.tour-inquiry { padding: 60px 0; background: var(--bg); }
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 800px) {
  .inquiry-layout { grid-template-columns: 1fr; }
}
.inq-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.inq-form label { font-size: 14px; font-weight: 500; display: block; margin-bottom: 4px; color: var(--text); }
.inq-form input,
.inq-form textarea,
.inq-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
  transition: 0.3s;
  background: var(--white);
}
.inq-form input:focus,
.inq-form textarea:focus,
.inq-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(202,85,15,0.1);
}
.inq-form textarea { height: 120px; resize: vertical; }
.inq-form .submit-btn { margin-top: 4px; }

.inq-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inq-side-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.inq-side-card i { font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.inq-side-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.inq-side-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.inq-wa-card {
  background: linear-gradient(135deg, #25d366, #1da851);
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
}
.inq-wa-card h4 { font-size: 15px; margin-bottom: 4px; color: #fff; }
.inq-wa-card p { font-size: 13px; margin-bottom: 12px; color: rgba(255,255,255,0.9); }
.wa-icon-wrap i { font-size: 36px; color: #fff; margin-bottom: 8px; }
.wa-btn {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
}
.wa-btn:hover { background: rgba(255,255,255,0.3); }
.wa-btn i { margin-right: 6px; }

.tour-cta {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.tour-cta h2 { font-size: 30px; margin-bottom: 10px; }
.tour-cta p {
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn.primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.cta-btn.primary:hover { background: var(--gold-dark); transform: scale(1.04); }
.cta-btn.outline {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.cta-btn.outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.cta-btn.outline i { margin-right: 6px; }

/* ========== LEGAL PAGES (Terms & Privacy Policy) ========== */
.legal-page {
  padding: 50px 24px 80px;
  background: var(--white);
}
.legal-page .legal-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.legal-page .legal-intro {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg);
}
.legal-page h2 {
  font-size: 24px;
  color: var(--primary);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px dotted rgba(202,85,15,0.15);
}
.legal-page h3 {
  font-size: 18px;
  color: var(--text);
  margin: 28px 0 12px;
  font-weight: 600;
}
.legal-page p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}
.legal-page ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-page ul li strong {
  color: var(--text);
}
.legal-page .legal-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--bg);
  text-align: center;
}
.legal-page .legal-footer p {
  font-size: 14px;
  color: var(--text-muted);
}
