/* =====================================================
   Chalo Farva — Responsive Fixes & Overrides
   Mobile · Tablet · Laptop — All breakpoints
   Loaded AFTER style.css so these take priority.
===================================================== */

/* ══════════════════════════════════════════════════
   SMALL LAPTOP / TABLET LANDSCAPE  (max 1100px)
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px; }
  .pkg-editorial { grid-template-columns: 1fr !important; }
  .best-price-layout { grid-template-columns: 1fr !important; gap: 40px; }
  .pkg-detail-layout { grid-template-columns: 1fr !important; }
  .booking-card { position: static !important; }
  .dest-mosaic { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
  .dest-mosaic .dest-card { grid-column: auto !important; grid-row: auto !important; }
  .dest-mosaic .dest-card:first-child { grid-column: 1/3 !important; grid-row: 1 !important; height: 300px; }
  .best-price-form { padding: 32px; }
  .contact-layout { grid-template-columns: 1fr !important; gap: 40px; }
}

/* ══════════════════════════════════════════════════
   TABLET  (max 900px)
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px; }
  .how-grid::before { display: none !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .inclusions-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { columns: 2 !important; }
  .rating-banner { gap: 28px !important; }
  .rating-divider { display: none !important; }
  .pkg-layout { grid-template-columns: 1fr !important; }
  .filter-sidebar { position: static !important; }

  /* Offers: 3-col → 2-col */
  .offer-grid[data-count="3"] { grid-template-columns: repeat(2, 1fr) !important; }
  .offer-grid[data-count="1"] .offer-card { grid-template-columns: 1fr !important; }
  .offer-grid[data-count="1"] .offer-img-wrap { min-height: 220px !important; height: 220px !important; }
  .home-offers-grid[data-cols="3"] { grid-template-columns: repeat(2, 1fr) !important; }
  .home-offers-grid[data-cols="1"] .home-offer-card { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════
   MOBILE / TABLET PORTRAIT  (max 768px)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Top bar hidden on mobile */
  .top-bar { display: none !important; }

  /* Navbar always at top */
  .navbar { top: 0 !important; }

  /* Hamburger visible */
  .nav-toggle { display: flex !important; }
  .nav-toggle.open { visibility: hidden; opacity: 0; }

  /* Full-screen mobile menu */
  .nav-menu {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100dvh !important;
    background: linear-gradient(135deg, #0c1a2e 0%, #060e1a 100%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    transform: translateX(100%) !important;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1) !important;
    padding: 0 !important;
    border: none !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
  }
  .nav-menu.open { transform: translateX(0) !important; }
  .nav-menu li { width: 100%; list-style: none; text-align: center; }
  .nav-menu a {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    padding: 16px 20px !important;
    display: block !important;
    width: 100% !important;
    letter-spacing: -0.5px !important;
  }
  .nav-menu a.active { color: var(--orange) !important; background: rgba(249,115,22,0.1) !important; }
  .nav-menu a::after { display: none !important; }
  .nav-actions .btn-nav-wa { display: none !important; }
  .mobile-only, .mobile-menu-header, .mobile-menu-footer { display: block !important; }

  /* Mobile menu header */
  .mobile-menu-header {
    width: 100%; padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 16px; list-style: none; flex-shrink: 0;
  }
  .mob-header-inner { display: flex; align-items: center; gap: 12px; }
  .mob-header-inner img { border-radius: 10px; border: 1px solid rgba(255,255,255,.1); }
  .mob-header-text { display: flex; flex-direction: column; }
  .mob-header-text span { color: #fff; font-weight: 800; font-size: 1.1rem; }
  .mob-header-text small { color: var(--orange); font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }
  .mob-close-btn {
    margin-left: auto; background: rgba(255,255,255,.1);
    border: none; color: #fff; width: 36px; height: 36px;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; cursor: pointer;
  }

  /* Mobile menu footer */
  .mobile-menu-footer {
    margin-top: auto; width: 100%;
    padding: 24px 24px 40px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.2); list-style: none; flex-shrink: 0;
  }
  .mob-footer-cta .btn-nav-wa {
    display: flex !important; width: 100% !important;
    justify-content: center !important; padding: 15px !important;
    font-size: 1rem !important; background: #25d366 !important;
    color: #fff !important; border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(37,211,102,.3) !important;
  }
  .mob-socials {
    display: flex; justify-content: center; align-items: center;
    gap: 15px; margin-top: 20px;
    color: rgba(255,255,255,.4); font-size: .85rem;
  }
  .mob-socials a {
    display: inline !important; width: auto !important;
    padding: 0 !important; font-size: .85rem !important;
    color: rgba(255,255,255,.8) !important; font-weight: 600 !important;
  }

  /* ── Hero Section ── */
  .hero { padding: 96px 16px 48px !important; min-height: 100svh !important; }
  .hero h1 { font-size: clamp(1.55rem, 5vw, 2.5rem) !important; margin-bottom: 24px !important; }
  .hero-cursive-title { font-size: clamp(1.25rem, 4vw, 2rem) !important; }

  /* Hero text slider: stack instead of absolute position */
  .hero-text-slider { height: auto !important; min-height: 52px !important; margin-bottom: 14px !important; }
  .hero-text-slide {
    position: relative !important; inset: auto !important;
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero-text-slide:not(.active) { display: none !important; }
  .hero-text-slide.active { display: flex !important; }

  /* ── EMT Search Box ── */
  .emt-search-wrap { max-width: 100% !important; padding: 0 !important; }
  .emt-form {
    flex-direction: column !important;
    border-radius: var(--radius) !important;
    padding: 12px !important;
    gap: 0 !important;
    align-items: stretch !important;
  }
  .emt-field {
    padding: 10px 14px !important;
    border-bottom: 1px solid var(--gray-100) !important;
    border-right: none !important;
  }
  .emt-btn {
    width: 100% !important; margin-left: 0 !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 20px !important; font-size: .95rem !important;
    margin-top: 8px !important;
  }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item { padding: 20px 10px !important; }
  .stat-num { font-size: 2.2rem !important; }
  .stat-label { font-size: .63rem !important; }

  /* ── Triple Slider: hide side cards ── */
  .triple-slider .triple-slider-prev,
  .triple-slider .triple-slider-next { display: none !important; }
  .triple-slider .swiper { width: 90% !important; max-width: 100% !important; }

  /* ── Layout & spacing ── */
  .section { padding: 60px 0 !important; }
  .section-sm { padding: 40px 0 !important; }
  .section-head { margin-bottom: 36px !important; }
  .container { padding: 0 16px !important; }
  .section-head-row { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }

  /* ── Destination mosaic → stacked ── */
  .dest-mosaic {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .dest-mosaic .dest-card {
    height: 200px !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .dest-mosaic .dest-card:first-child { height: 250px !important; }
  .dest-mosaic .dest-card:nth-child(6) { display: block !important; }

  /* ── Package grid: single column ── */
  .pkg-grid { grid-template-columns: 1fr !important; }

  /* ── Package footer (price + button) ── */
  .pkg-footer { flex-wrap: wrap !important; gap: 10px !important; }

  /* ── Reviews grid ── */
  .review-grid { grid-template-columns: 1fr !important; }

  /* ── Rating banner ── */
  .rating-banner {
    flex-direction: column !important; padding: 28px 20px !important;
    gap: 16px !important; text-align: center !important;
  }
  .rating-big-num { font-size: 3rem !important; }

  /* ── Package detail ── */
  .pkg-detail-hero { height: 260px !important; }
  .pkg-detail-hero-info { padding: 20px 16px !important; }
  .pkg-detail-hero-info h1 { font-size: clamp(1.3rem, 4vw, 2rem) !important; }
  .pkg-detail-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .booking-card { position: static !important; margin-top: 0 !important; }
  .booking-price-display .curr { font-size: 2rem !important; }
  .pkg-tabs { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }

  /* ── Highlights in detail page ── */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Best price ── */
  .best-price-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .best-price-form { padding: 24px 18px !important; }

  /* ── Contact ── */
  .contact-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-form-card { padding: 24px 18px !important; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr !important; }
  .form-row-3 { grid-template-columns: 1fr !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-main { padding: 48px 16px 32px !important; }
  .footer-bottom { padding: 16px 16px !important; font-size: .72rem !important; }

  /* ── Page hero (inner pages) ── */
  .page-hero { padding: 80px 16px 56px !important; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem) !important; }

  /* ── CTA banner ── */
  .cta-banner { padding: 56px 0 !important; }
  .cta-btns { flex-direction: column !important; align-items: center !important; gap: 10px !important; }
  .cta-btns .btn { width: 100% !important; max-width: 280px !important; justify-content: center !important; }

  /* ── Instagram strip ── */
  .ig-strip-inner {
    flex-direction: column !important; text-align: center !important;
    gap: 16px !important; padding: 20px 16px !important;
  }
  .ig-strip-left { flex-direction: column !important; gap: 10px !important; align-self: center !important; }
  .ig-strip-btn { width: 100% !important; max-width: 280px !important; justify-content: center !important; align-self: center !important; }

  /* ── Gallery ── */
  .gallery-grid { columns: 2 !important; column-gap: 10px !important; }
  .gallery-item { margin-bottom: 10px !important; }

  /* ── Floating FABs - safer positions ── */
  .wa-fab { width: 54px !important; height: 54px !important; bottom: 20px !important; right: 16px !important; }
  .wa-fab svg { width: 26px !important; height: 26px !important; }
  .call-fab { width: 46px !important; height: 46px !important; bottom: 86px !important; right: 18px !important; font-size: 1.1rem !important; }

  /* ── Best price section text ── */
  .best-price-section { padding: 64px 0 !important; }
}

/* ══════════════════════════════════════════════════
   SMALL MOBILE  (max 480px)
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Gallery: 1 col */
  .gallery-grid { columns: 1 !important; }

  /* How it works: 1 col */
  .how-grid { grid-template-columns: 1fr !important; }

  /* Hero */
  .hero { padding: 88px 14px 40px !important; }
  .hero h1 { font-size: 1.58rem !important; letter-spacing: -0.5px !important; }
  .hero-cursive-title { font-size: 1.2rem !important; }

  /* EMT pills bar */
  .hero-emt-pills-wrapper { padding: 10px 12px !important; }
  .emt-pill { padding: 5px 12px 5px 5px !important; }
  .emt-pill-text { font-size: .74rem !important; }
  .emt-pill-img { width: 34px !important; height: 34px !important; }

  /* Offers: all 1 col on small mobile */
  .offer-grid,
  .offer-grid[data-count="1"],
  .offer-grid[data-count="2"],
  .offer-grid[data-count="3"] { grid-template-columns: 1fr !important; }
  .offer-grid[data-count="1"] .offer-card { grid-template-columns: 1fr !important; }
  .home-offers-grid,
  .home-offers-grid[data-cols="1"],
  .home-offers-grid[data-cols="2"],
  .home-offers-grid[data-cols="3"] { grid-template-columns: 1fr !important; }
  .home-offers-head { flex-direction: column !important; align-items: flex-start !important; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Section heading font */
  .section-head h2 { font-size: clamp(1.45rem, 5vw, 2rem) !important; }

  /* Package footer: stack */
  .pkg-footer { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
  .btn-pkg { width: 100% !important; justify-content: center !important; }

  /* Countdown boxes */
  .countdown-box { min-width: 42px !important; padding: 7px 9px !important; }
  .countdown-box .num { font-size: 1.05rem !important; }
  .countdown-box .lbl { font-size: .52rem !important; }

  /* Package detail: 4-col info → 2-col */
  .pkg-detail-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Inclusions grid */
  .inclusions-grid { grid-template-columns: 1fr !important; }

  /* Stat item sizing */
  .stat-num { font-size: 2rem !important; }
  .stat-label { font-size: .6rem !important; }
}

/* ══════════════════════════════════════════════════
   VERY SMALL MOBILE  (max 380px)
══════════════════════════════════════════════════ */
@media (max-width: 380px) {
  :root { --nav-h: 60px !important; }
  .container { padding: 0 12px !important; }
  .stat-num { font-size: 1.8rem !important; }
  .stat-label { font-size: .57rem !important; }
  .emt-form { padding: 10px !important; }
  .emt-field { padding: 8px 10px !important; }
  .emt-field input { font-size: .9rem !important; }
  .hero h1 { font-size: 1.4rem !important; }
  .section-head h2 { font-size: 1.38rem !important; }
  .pkg-card { border-radius: var(--radius) !important; }
  .footer-bottom p { font-size: .68rem !important; }
}

/* ══════════════════════════════════════════════════
   DESTINATIONS PAGE RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dest-filter-bar { position: relative !important; top: 0 !important; }
  .filter-pill { padding: 8px 14px !important; font-size: .76rem !important; }
  .dest-filter-wrap .filter-group { gap: 10px !important; padding: 12px 0 !important; }
  .filter-label { min-width: 80px !important; font-size: .62rem !important; }
}

@media (max-width: 640px) {
  .dest-page-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .dest-page-img { height: 150px !important; }
  .dest-page-body { padding: 12px 14px !important; }
  .dest-page-body h3 { font-size: .9rem !important; }
  .dest-page-desc { display: none !important; }
  .guj-tabs { gap: 6px !important; }
  .guj-tab { padding: 8px 12px !important; font-size: .74rem !important; }
}

@media (max-width: 400px) {
  .dest-page-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS PAGE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .gallery-tab { padding: 10px 14px !important; font-size: .8rem !important; }
}
@media (max-width: 400px) {
  .video-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════
   MISCELLANEOUS FIXES
══════════════════════════════════════════════════ */

/* Prevent any horizontal overflow */
body { overflow-x: hidden !important; }
*, *::before, *::after { box-sizing: border-box; }

/* Ensure images never overflow */
img { max-width: 100%; height: auto; }

/* Lightbox full-width on mobile */
@media (max-width: 480px) {
  .lightbox img { max-width: 98vw !important; max-height: 90vh !important; }
  .lightbox-close { top: 12px !important; right: 14px !important; font-size: 2.4rem !important; }
}

/* Fix nav logo on small screens */
@media (max-width: 480px) {
  .main-logo { height: 44px !important; max-height: 44px !important; }
  .nav-logo { max-width: 160px !important; }
}

/* Admin CSS - ensure admin pages are scrollable */
@media (max-width: 768px) {
  .admin-wrapper { flex-direction: column !important; }
  .admin-sidebar { width: 100% !important; min-height: auto !important; }
  .admin-content { padding: 16px !important; }
}

/* ══════════════════════════════════════════════════
   PACKAGE DETAIL — New responsive classes
══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Highlights grid: 2-col → 1-col */
  .pkg-highlights-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Stats grid: 4-col → 2-col */
  .pkg-detail-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Highlights grid: 1-col */
  .pkg-highlights-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════
   TABLET — Two-column grids where still needed
══════════════════════════════════════════════════ */
@media (min-width: 481px) and (max-width: 768px) {
  /* pkg-grid: 2 cards per row on tablet */
  .pkg-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* dest-mosaic: 2 per row on tablet */
  .dest-mosaic { grid-template-columns: repeat(2, 1fr) !important; }
  .dest-mosaic .dest-card { height: 180px !important; grid-column: auto !important; grid-row: auto !important; }
  .dest-mosaic .dest-card:first-child { grid-column: 1 / 3 !important; height: 240px !important; }
}

/* Nav backdrop overlay z-index stacking */
#navOverlay { z-index: 999 !important; }
@media (max-width: 768px) {
  .nav-menu { z-index: 1000 !important; }
  .nav-toggle { z-index: 1001 !important; } /* stays above overlay when visible */
}

/* ══════════════════════════════════════════════════
   ENSURE SWIPER WORKS PROPERLY ON MOBILE
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .swiper-wrapper { touch-action: pan-y !important; }
  .swiper { user-select: none !important; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS — rating summary (missing CSS)
══════════════════════════════════════════════════ */
.rating-summary {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}
.rating-big { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.rating-stars-big { font-size: 2rem; color: #f59e0b; margin: 10px 0 8px; letter-spacing: 4px; }

@media (max-width: 768px) {
  .rating-summary { padding: 28px 20px !important; margin-bottom: 32px !important; }
  .rating-big { font-size: 3.5rem !important; }
  .rating-stars-big { font-size: 1.5rem !important; }
}

/* ══════════════════════════════════════════════════
   DESTINATIONS — Gujarat section button wrap
══════════════════════════════════════════════════ */
.gujarat-section { padding: 80px 0; background: var(--off-white); }
.guj-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.guj-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}
.guj-tab.active, .guj-tab:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Gujarat CTA buttons — flex wrap on mobile */
.gujarat-cta-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .gujarat-section { padding: 56px 0 !important; }
  .guj-tabs { gap: 7px !important; }
  .guj-tab { padding: 8px 14px !important; font-size: .75rem !important; }
  .gujarat-cta-wrap { flex-direction: column !important; align-items: center !important; }
  .gujarat-cta-wrap .btn { width: 100% !important; max-width: 280px !important; justify-content: center !important; }
  /* Also fix inline-style buttons in destinations.php */
  .section [style*="margin-left:12px"],
  .container [style*="margin-left:12px"] { margin-left: 0 !important; margin-top: 10px !important; }
}

/* ══════════════════════════════════════════════════
   DESTINATIONS — page hero height on mobile
══════════════════════════════════════════════════ */
.dest-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5f 50%, #0d2137 100%);
  padding: 140px 20px 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.8) 0%, rgba(30,58,95,.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .dest-page-hero { padding: 110px 16px 60px !important; }
  .dest-page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem) !important; }
  .dest-page-hero p { font-size: .9rem !important; }
}
@media (max-width: 480px) {
  .dest-page-hero { padding: 96px 14px 48px !important; }
}

/* ══════════════════════════════════════════════════
   PACKAGES — filter sidebar mobile toggle
══════════════════════════════════════════════════ */
.filter-toggle-btn {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  transition: border-color .2s;
}
.filter-toggle-btn:hover { border-color: var(--orange); }
.filter-sidebar-body { display: block; }

@media (max-width: 768px) {
  .filter-toggle-btn { display: flex !important; }
  .filter-sidebar-body.collapsed { display: none !important; }
  .filter-sidebar { padding: 0 !important; background: transparent !important; box-shadow: none !important; }
  .filter-sidebar > h3 { display: none !important; }
  .filter-sidebar form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
}

/* ══════════════════════════════════════════════════
   REVIEW GRID — responsive columns
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .review-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
  .review-grid { grid-template-columns: 1fr !important; }
  .review-card { padding: 24px 20px !important; }
}

/* ══════════════════════════════════════════════════
   GALLERY GRID — responsive columns
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gallery-grid { columns: 3 !important; }
}
@media (max-width: 900px) {
  .gallery-grid { columns: 2 !important; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1 !important; }
}

/* ══════════════════════════════════════════════════
   PKG TABS — horizontal scroll on mobile
══════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .pkg-tabs {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    gap: 2px !important;
    flex-wrap: nowrap !important;
    padding-bottom: 4px !important;
    max-width: 100%;
  }
  /* Show a subtle scrollbar so users know they can swipe */
  .pkg-tabs::-webkit-scrollbar { height: 4px; }
  .pkg-tabs::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
  .pkg-tabs::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
  .pkg-tab {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 10px 12px !important;
    font-size: .78rem !important;
  }
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE — info items responsive
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .contact-item { gap: 12px !important; }
  .contact-icon { width: 44px !important; height: 44px !important; font-size: 1.2rem !important; flex-shrink: 0 !important; }
  .contact-info h2 { font-size: 1.5rem !important; }
}

/* ══════════════════════════════════════════════════
   HERO SWIPER — mobile slide height
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-swiper { height: 100svh !important; min-height: 600px !important; }
  .hero-slide { min-height: 600px !important; }
}
@media (max-width: 480px) {
  .hero-swiper { height: 100svh !important; min-height: 580px !important; }
  .hero-slide { min-height: 580px !important; }
}

/* ══════════════════════════════════════════════════
   FLOATING BUTTONS — avoid overlapping footer content
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wa-fab { bottom: 18px !important; right: 14px !important; }
  .call-fab { bottom: 82px !important; right: 16px !important; }
}

/* ══════════════════════════════════════════════════
   BREADCRUMB — fix padding on mobile
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .breadcrumb-inner { padding: 0 16px !important; }
  .breadcrumb { padding: 12px 0 !important; }
}

/* ══════════════════════════════════════════════════
   FOOTER — logo + social row
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer-logo { max-width: 140px !important; height: auto !important; }
  .footer-socials { gap: 10px !important; }
  .footer-social-link { width: 36px !important; height: 36px !important; font-size: .9rem !important; }
  .footer-about { font-size: .82rem !important; }
  .footer-col h4 { font-size: .82rem !important; margin-bottom: 14px !important; }
  .footer-links li { margin-bottom: 8px !important; }
  .footer-links a { font-size: .82rem !important; }
}

/* ══════════════════════════════════════════════════
   PREVENT TEXT OVERFLOW site-wide
══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6, p, span, a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ══════════════════════════════════════════════════
   ULTIMATE MOBILE MOSAIC FIX
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dest-mosaic {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 16px !important;
  }
  .dest-mosaic .dest-card {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: 220px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }
  .dest-mosaic .dest-card:first-child {
    height: 260px !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .dest-mosaic {
    grid-template-columns: 1fr 1fr !important;
  }
  .dest-mosaic .dest-card {
    grid-column: auto !important;
  }
  .dest-mosaic .dest-card:first-child {
    grid-column: 1 / -1 !important;
  }
}
