/* ============================================================
   MZANZI — responsive.css
   Mobile-first fixes for every screen size
   ============================================================ */

/* ─── BASE BODY SPACING ─── */
body {
  overflow-x: hidden;
}

/* Push content below fixed header (topbar + navbar) */
.hero,
.page-hero {
  /* hero handles its own padding-top internally */
}

/* ─── HERO ─── */
@media (max-width: 900px) {
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-desc { font-size: .95rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-content { padding-bottom: 40px; }
  .hero-scroll { display: none; }
}

/* ─── TOUR TYPES BAR ─── */
.tour-types-inner {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tour-types-inner::-webkit-scrollbar { display: none; }
a.tour-type-item { text-decoration: none; }

@media (max-width: 900px) {
  .tour-type-item { min-width: 150px; padding: 20px 14px; }
  .tour-type-desc { display: none; }
  .tour-type-name { font-size: .78rem; }
}
@media (max-width: 480px) {
  .tour-type-item { min-width: 130px; padding: 18px 12px; }
}

/* ─── ACTIVITIES GRID ─── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .activities-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── TOURS GRID ─── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1000px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tours-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
}

/* ─── GALLERY ITEMS ─── */
.gallery-item { height: 200px; }
@media (max-width: 700px) { .gallery-item { height: 160px; } }
@media (max-width: 480px) { .gallery-item { height: 140px; } }

/* ─── CTA BANNER ─── */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text h2 { font-size: 1.5rem; }
  .cta-banner { padding: 50px 0; }
}

/* ─── SECTION HEADINGS ─── */
@media (max-width: 600px) {
  .section-heading h2 { font-size: 1.6rem; }
  .section { padding: 50px 0; }
  .section--lg { padding: 70px 0; }
  .container { padding: 0 16px; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 60px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
@media (max-width: 600px) {
  .page-hero { padding: 40px 0 40px; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ─── ABOUT GRID ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { margin-bottom: 30px; }
  .about-badge { right: 0; bottom: -20px; }
}

/* ─── FOOTER ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 48px;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 50px 0 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
}

/* ─── SINGLE POST / PAGE LAYOUT ─── */
@media (max-width: 900px) {
  /* Sidebar stacks below content */
  #main-content + aside,
  .sidebar { padding-left: 0 !important; margin-top: 40px; }
}

/* ─── CONTACT / ABOUT PAGE GRIDS ─── */
@media (max-width: 860px) {
  /* Any inline grid with two columns becomes single column */
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ─── BACK TO TOP ─── */
#back-to-top { bottom: 20px; right: 20px; }
@media (max-width: 600px) { #back-to-top { width: 38px; height: 38px; font-size: .8rem; } }

/* ─── LIGHTBOX ─── */
.lightbox img { max-width: 95vw; max-height: 80vh; }

/* ─── CARDS — ensure images don't break ─── */
.tour-card-img img,
.activity-card-img img,
.blog-card-img img,
.activity-full-img img,
.tour-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── PREVENT HORIZONTAL SCROLL ─── */
.tour-types,
.gallery-section,
.blog-section,
.activities-section,
.tours-section {
  overflow-x: hidden;
}

/* ─── MOBILE NAV IMPROVEMENTS ─── */
@media (max-width: 900px) {
  .mz-navbar-inner { height: 60px; }
  .mz-logo .mz-logo-img { max-height: 42px; }
}
@media (max-width: 480px) {
  .mz-navbar-inner { height: 60px; }
  .mz-logo .mz-logo-img { max-height: 36px; }
}

/* ─── ACTIVITY READ MORE LINK ─── */
.activity-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sage);
  transition: gap var(--tr), color var(--tr);
}
.activity-read-more:hover { color: var(--gold); gap: 10px; }
.activity-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .77rem;
  color: var(--muted);
}
.activity-card-meta > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.activity-card-meta i { color: var(--gold); }

/* ─── TOUR TYPE LINK STYLE ─── */
a.tour-type-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; text-align: center; }
a.tour-type-item:hover .tour-type-icon { background: var(--gold); color: var(--white); border-color: var(--gold); }
a.tour-type-item:hover .tour-type-name { color: var(--gold-light); }

/* ─── ACTIVITY HIGHLIGHTS LIST ─── */
.activity-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.activity-highlights li {
  font-size: .8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.activity-highlights li i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }

/* ─── BLOG SECTION HEADER ─── */
.blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
@media(max-width:600px){
  .blog-section-header{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-section-header .section-heading{text-align:center;}
}

/* ─── TOURS PAGE GRID ─── */
.tour-full-body .tour-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 600px) {
  .tour-full-body .tour-card-footer { flex-direction: column; align-items: flex-start; }
  .tour-full-body .tour-card-footer .btn { width: 100%; justify-content: center; }
}

/* ─── PRINT ─── */
@media print {
  .mz-header, .back-to-top, .hero-scroll, .cta-banner { display: none; }
  body { padding-top: 0; }
}

/* ============================================================
   MOBILE OPTIMISATION — comprehensive overhaul
   Target: reduce scroll depth, tighten spacing, sharpen layout
   ============================================================ */

/* ─── GLOBAL SECTION SPACING — tighter on mobile ─── */
@media (max-width: 600px) {
  .section           { padding: 36px 0; }
  .section--lg       { padding: 48px 0; }
  .section--sm       { padding: 28px 0; }
  .container         { padding: 0 14px; }
  .section-heading   { margin-bottom: 28px; }
  .section-heading h2{ font-size: 1.5rem; }
  .section-heading p { font-size: .88rem; }
  .tagline           { font-size: .65rem; }
}

/* ─── HERO — tighter, less empty space ─── */
@media (max-width: 600px) {
  .hero              { min-height: 320px !important; max-height: 480px !important; }
  .hero-content      { padding-top: 28px !important; padding-bottom: 28px; }
  .hero-title        { font-size: 1.65rem !important; margin-bottom: 12px; line-height: 1.15; }
  .hero-desc         { font-size: .85rem !important; margin-bottom: 20px; line-height: 1.55; }
  .hero-tagline      { font-size: .65rem; margin-bottom: 8px; }
  .hero-actions      { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: .8rem; }
}

/* ─── PACKAGES — featured card stacks cleanly ─── */
@media (max-width: 600px) {
  .packages-section  { padding: 36px 0 !important; }
  .pkg-featured-ad   { border-radius: 12px !important; margin-bottom: 28px !important; }
  .pkg-featured-collage { min-height: 190px !important; }
  .pkg-featured-body { padding: 18px 16px !important; }
  .pkg-featured-title{ font-size: 1.2rem !important; }
  .pkg-featured-desc { font-size: .82rem !important; margin-bottom: 12px !important; }
  .pkg-featured-inc li{ font-size: .8rem !important; }
  .pf-amt            { font-size: 1.5rem !important; }
  .pkg-featured-btn  { padding: 11px 20px !important; font-size: .82rem !important; }

  /* Package grid cards */
  .pkg-grid          { gap: 14px !important; }
  .pkg-card          { border-radius: 10px !important; }
  .pkg-img           { height: 180px !important; }
  .pkg-body          { padding: 14px !important; }
  .pkg-title         { font-size: .95rem !important; }
  .pkg-desc          { font-size: .8rem !important; -webkit-line-clamp: 2 !important; }
  .pkg-inc           { display: none !important; } /* hide bullets on mobile — saves space */
  .pkg-footer        { padding-top: 12px !important; }
  .pkg-from          { font-size: .6rem !important; }
  .pkg-price         { font-size: 1.1rem !important; }
  .pkg-book-btn, .pkg-detail-btn { padding: 8px 12px !important; font-size: .78rem !important; }
}

/* ─── VEHICLE FLEET — show 1 card full-width, smaller height ─── */
@media (max-width: 600px) {
  .vfleet-section    { padding: 32px 0 28px !important; }
  .vfl-card          { width: 85vw !important; min-width: 85vw !important; }
  .vfl-img-wrap      { height: 180px !important; }
  .vfl-body          { padding: 12px 14px !important; }
  .vfl-name          { font-size: .88rem !important; }
  .vfl-meta          { font-size: .72rem !important; }
  .vfl-book-btn      { padding: 8px 14px !important; font-size: .74rem !important; }
  .vfl-arrow         { width: 36px !important; height: 36px !important; }
}

/* ─── BLOG — compact cards ─── */
@media (max-width: 600px) {
  .blog-section      { padding: 36px 0 !important; }
  .hbf-img           { min-height: 180px !important; }
  .hbf-body          { padding: 18px 16px !important; gap: 10px !important; }
  .hbf-title         { font-size: 1.1rem !important; }
  .hbf-excerpt       { font-size: .82rem !important; -webkit-line-clamp: 2 !important; }
  .hbf-read-btn, .hbf-all-btn { padding: 10px 16px !important; font-size: .78rem !important; }
  .blog-grid         { gap: 14px !important; }
  .blog-card-img     { height: 160px !important; }
  .blog-card-body    { padding: 16px !important; }
  .blog-card-title   { font-size: .92rem !important; }
  .blog-card-excerpt { font-size: .8rem !important; -webkit-line-clamp: 2 !important; }
}

/* ─── EVENTS BANNER ─── */
@media (max-width: 600px) {
  .ev-fp-section     { padding: 32px 0 !important; }
  .ev-fp-title       { font-size: 1.4rem !important; }
  .ev-fp-sub         { font-size: .82rem !important; margin-bottom: 16px !important; }
  .ev-fp-cards       { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .ev-fp-card-img    { height: 100px !important; }
  .ev-fp-card-name   { font-size: .75rem !important; }
}

/* ─── EXTRAS (HELICOPTER / PARAGLIDING) BANNER ─── */
@media (max-width: 600px) {
  .extras-fp-banner  { grid-template-columns: 1fr !important; min-height: auto !important; }
  .extras-fp-divider { display: none !important; }
  .extras-fp-card    { padding: 18px 14px !important; gap: 14px !important; }
  .extras-fp-img     { width: 64px !important; height: 64px !important; }
  .extras-fp-title   { font-size: .92rem !important; }
  .extras-fp-desc    { font-size: .8rem !important; -webkit-line-clamp: 2 !important; overflow: hidden !important; display: -webkit-box !important; -webkit-box-orient: vertical !important; }
}

/* ─── GALLERY SLIDER ─── */
@media (max-width: 600px) {
  .gallery-slider-section { padding: 0 !important; }
  .gsl-slide         { height: 220px !important; }
  .gsl-arrow         { width: 34px !important; height: 34px !important; }
  .gsl-slide-info    { bottom: 8px !important; left: 10px !important; }
  .gsl-cat           { font-size: .6rem !important; }
  .gsl-title         { font-size: .88rem !important; }
}

/* ─── ACTIVITIES PROMO ─── */
@media (max-width: 600px) {
  .activities-promo-section { padding: 32px 0 36px !important; }
  .act-featured      { min-height: 200px !important; }
  .act-featured-content h2 { font-size: 1.3rem !important; }
  .act-featured-content p  { font-size: .82rem !important; }
  .act-grid-item     { height: 110px !important; }
  .act-grid-item-name{ font-size: .72rem !important; }
}

/* ─── REVIEWS SECTION ─── */
@media (max-width: 600px) {
  .sr-section        { padding: 36px 0 32px !important; }
  .sr-title          { font-size: 1.5rem !important; }
  .sr-subtitle       { font-size: .85rem !important; }
  .sr-header         { margin-bottom: 24px !important; }

  /* Horizontal swipe carousel on mobile */
  .sr-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    padding-bottom: 8px !important;
    margin: 0 -14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .sr-grid::-webkit-scrollbar { display: none !important; }
  .sr-section .glsr-review {
    min-width: 80vw !important;
    max-width: 80vw !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
    padding: 20px 18px !important;
  }

  .sr-actions        { margin-top: 24px !important; }
  .btn-sr-more       { padding: 11px 22px !important; font-size: .82rem !important; display: block !important; margin-bottom: 10px !important; }
  .sr-cta            { margin-top: 28px !important; padding-top: 24px !important; }
  .sr-cta-title      { font-size: 1.1rem !important; }
  .btn-sr-cta        { padding: 12px 28px !important; font-size: .84rem !important; }
}

/* ─── CTA BANNER ─── */
@media (max-width: 600px) {
  .cta-banner        { padding: 36px 0 !important; }
  .cta-text h2       { font-size: 1.25rem !important; }
  .cta-text p        { font-size: .85rem !important; }
  .cta-inner > div:last-child { gap: 8px !important; }
  .cta-inner .btn    { padding: 11px 18px !important; font-size: .78rem !important; }
}

/* ─── FOOTER ─── */
@media (max-width: 600px) {
  .footer-main       { padding: 36px 0 28px !important; }
  .footer-col h4     { font-size: .8rem !important; margin-bottom: 12px !important; }
  .footer-col li, .footer-col p, .footer-col a { font-size: .82rem !important; }
  .footer-bottom     { padding: 14px 0 !important; }
  .footer-bottom-inner p { font-size: .75rem !important; }
}

/* ─── STATS BAR — horizontal scroll on mobile ─── */
@media (max-width: 600px) {
  .stats-bar         { padding: 32px 0 !important; }
  .stats-grid        {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 0 !important;
  }
  .stats-grid::-webkit-scrollbar { display: none !important; }
  .stat-item         { min-width: 120px !important; padding: 0 18px !important; flex-shrink: 0 !important; }
  .stat-num          { font-size: 1.6rem !important; }
  .stat-label        { font-size: .7rem !important; }
}

/* ─── PAGE HERO (inner pages) ─── */
@media (max-width: 600px) {
  .page-hero         { padding: 32px 0 28px !important; }
  .page-hero h1      { font-size: 1.5rem !important; }
  .page-hero p       { font-size: .85rem !important; }
}

/* ─── REVIEW POPUP ─── */
.rv-popup-overlay {
  position: fixed; inset: 0; background: rgba(5,10,7,.6);
  z-index: 99990; display: flex; align-items: flex-end;
  justify-content: center; padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.rv-popup-overlay.open {
  opacity: 1; pointer-events: all;
}
.rv-popup {
  background: #fff; width: 100%; max-width: 480px;
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 32px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,.9,.36,1);
  position: relative;
}
.rv-popup-overlay.open .rv-popup {
  transform: translateY(0);
}
.rv-popup-close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f3f3f3; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 1rem; transition: background .2s;
}
.rv-popup-close:hover { background: #e5e5e5; }
.rv-popup-stars { display: flex; gap: 6px; margin-bottom: 14px; }
.rv-popup-stars span { font-size: 1.6rem; }
.rv-popup-eyebrow {
  font-size: .65rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold, #b8902e); margin-bottom: 6px;
  display: block;
}
.rv-popup-title {
  font-family: var(--ff-d, 'Georgia', serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--forest, #0a1e14); margin: 0 0 6px;
}
.rv-popup-sub {
  font-size: .85rem; color: #666; margin: 0 0 22px; line-height: 1.5;
}
.rv-popup-btns { display: flex; flex-direction: column; gap: 10px; }
.rv-popup-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; background: var(--forest, #0a1e14); color: #fff;
  border-radius: 10px; font-size: .88rem; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.rv-popup-btn-primary:hover { background: #1a3a28; color: #fff; }
.rv-popup-btn-secondary {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 20px; background: transparent;
  border: 1.5px solid var(--border, #e5e0d8);
  color: #888; border-radius: 10px; font-size: .84rem;
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: all .2s; font-family: inherit;
  width: 100%;
}
.rv-popup-btn-secondary:hover { border-color: #bbb; color: #555; }
.rv-popup-drag { width: 40px; height: 4px; background: #e0e0e0; border-radius: 2px; margin: 0 auto 20px; }

/* On desktop: centered modal instead of bottom sheet */
@media (min-width: 601px) {
  .rv-popup-overlay { align-items: center; padding: 20px; }
  .rv-popup { border-radius: 16px; transform: translateY(16px) scale(.97); max-width: 420px; }
  .rv-popup-overlay.open .rv-popup { transform: translateY(0) scale(1); }
  .rv-popup-drag { display: none; }
}
