/* ═══ GoEliteTrip v2 — Main Stylesheet ═══ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --red:     #e8392a;
  --red2:    #ff5a4a;
  --redbg:   rgba(232,57,42,.08);
  --dark:    #0f1117;
  --text:    #1a1d26;
  --muted:   #6b7280;
  --muted2:  #9ca3af;
  --border:  rgba(0,0,0,.09);
  --bg:      #f8f9fb;
  --white:   #ffffff;
  --green:   #16a34a;
  --radius:  16px;
  --r2:      10px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
}

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

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--dark);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .2px;
  padding: 0 28px;
  color: rgba(255,255,255,.85);
}
.marquee-item i { color: var(--red); font-size: 11px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.13); }
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 15px;
}
.brand-name { font-size: 19px; font-weight: 700; color: var(--red); letter-spacing: -.5px; }
.brand-name strong { font-weight: 800; color: var(--text); }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-links a.active { color: var(--red); background: var(--redbg); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 8px; }

.btn-quote, .btn-enquire {
  background: var(--red);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-quote:hover, .btn-enquire:hover { background: var(--red2); transform: translateY(-1px); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-call:hover { border-color: var(--red); color: var(--red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.mobile-menu a:hover { background: var(--bg); }
.w-full { width: 100%; text-align: center; justify-content: center; }

/* ─── DESTINATION FILTER ROW ─── */
.dest-filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  position: relative;
  z-index: 10;
}
.dest-scroll-row {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 14px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}
.dest-scroll-row::-webkit-scrollbar { display: none; }
.dest-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  width: 76px;
  text-decoration: none;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
  -webkit-tap-highlight-color: transparent;
}
.dest-chip:hover  { transform: translateY(-4px); }
.dest-chip:active { transform: scale(.92); transition-duration: .08s; }
.dest-bubble {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  background: var(--bg);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
}
.dest-bubble::after {
  content: '';
  position: absolute;
  top: 4px; left: 10px; right: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  border-radius: 1px;
}
.dest-chip:hover .dest-bubble {
  background: var(--redbg);
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(232,57,42,.18);
}
.dest-chip-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 76px;
  letter-spacing: .01em;
  transition: color .18s;
}
.dest-chip:hover .dest-chip-name { color: var(--red); font-weight: 600; }

/* ─── HERO ─── */
.hero {
  position: relative;
  /* Use svh on mobile so browser chrome doesn't cause overflow */
  height: calc(100svh - 102px);
  height: calc(100vh  - 102px); /* fallback for older browsers */
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-heading { text-align: center; color: white; }
.hero-heading h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 10px;
}
.hero-heading p { font-size: clamp(14px, 2vw, 17px); opacity: .9; }

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 560px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  cursor: pointer;
  transition: all .25s;
  color: white;
  text-align: center;
}
.service-tile:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.tile-emoji { font-size: 32px; line-height: 1; display: block; }
.tile-label { font-size: 13px; font-weight: 600; }

/* Hero Search */
.hero-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 60px;
  padding: 7px 7px 7px 18px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.search-input-wrap { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.search-icon { color: var(--red); font-size: 14px; flex-shrink: 0; }
.hero-search input {
  border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 14px; color: var(--text); width: 100%;
}
.hero-search input::placeholder { color: var(--muted); }
.search-divider { width: 1px; height: 24px; background: var(--border); margin: 0 12px; flex-shrink: 0; }
.search-date-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; color: var(--muted);
  font-family: var(--font-body); font-size: 13px; cursor: pointer;
  white-space: nowrap; padding: 0 10px;
}
.search-date-btn i { color: var(--red); }
.search-explore-btn {
  background: var(--red); color: white; border: none;
  border-radius: 50px; padding: 11px 24px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.search-explore-btn:hover { background: var(--red2); }

/* Slide Indicators */
.slide-indicators {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.indicator {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; padding: 0;
}
.indicator.active { background: white; width: 24px; border-radius: 4px; }

/* ─── QUICK SEARCH ─── */
.quick-search-section { padding: 24px 0; background: var(--white); }
.quick-search-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.quick-search-form { display: flex; align-items: center; height: 60px; }
.qs-field { display: flex; align-items: center; gap: 10px; padding: 0 18px; flex: 1; }
.qs-field i { color: var(--red); font-size: 14px; flex-shrink: 0; }
.qs-field input, .qs-field select {
  border: none; outline: none; font-family: var(--font-body);
  font-size: 14px; color: var(--text); background: transparent; width: 100%;
}
.qs-sep { width: 1px; height: 30px; background: var(--border); flex-shrink: 0; }
.qs-btn {
  background: var(--red); color: white; border: none; height: 100%;
  padding: 0 24px; font-family: var(--font-body); font-size: 14px;
  font-weight: 700; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap;
}
.qs-btn:hover { background: var(--red2); }

/* ─── SECTION COMMON ─── */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.section-eyebrow.light { color: rgba(255,255,255,.7); }
.section-title {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 10px;
}
.section-title.light { color: white; }
.section-title em { font-style: italic; color: var(--red); }
.section-sub { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.filter-tab {
  padding: 7px 16px; border: 1.5px solid var(--border); background: white;
  border-radius: 50px; font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--muted); cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active { background: var(--red); color: white; border-color: var(--red); }

/* ─── PACKAGE CARDS ─── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.packages-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.pkg-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .3s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pkg-card.hidden { display: none; }
.pkg-link, .pkg-card-link { text-decoration: none; color: inherit; display: block; }
.pkg-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg);
}
.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s; display: block;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: white;
  padding: 3px 9px; border-radius: 20px; font-size: 11px; font-weight: 700;
}
.pkg-hover-overlay, .pkg-overlay {
  position: absolute; inset: 0;
  background: rgba(232,57,42,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: white; font-size: 14px; font-weight: 600;
}
.pkg-card:hover .pkg-hover-overlay,
.pkg-card:hover .pkg-overlay { opacity: 1; }
.pkg-body { padding: 16px; }
.pkg-meta { display: flex; gap: 12px; font-size: 11.5px; color: var(--muted); margin-bottom: 7px; flex-wrap: wrap; }
.pkg-meta i { color: var(--red); margin-right: 3px; }
.pkg-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 7px; line-height: 1.3; color: var(--text); }
.pkg-rating { font-size: 12px; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.stars { color: #f59e0b; font-size: 12px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pkg-price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.price-old { font-size: 11.5px; color: var(--muted2); text-decoration: line-through; }
.price-now { font-size: 19px; font-weight: 800; color: var(--red); }
.price-pp, .price-label { font-size: 11px; color: var(--muted); }
.pkg-book-btn, .btn-view {
  background: var(--red); color: white; padding: 6px 12px;
  border-radius: 8px; font-size: 12px; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 40px; opacity: .3; margin-bottom: 12px; display: block; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state a { color: var(--red); }
.center-action { text-align: center; margin-top: 4px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border: 2px solid var(--red); color: var(--red);
  border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--red); color: white; }

/* ─── CATEGORY SLIDER ─── */
/* ─── CATEGORY SLIDER SECTION ─── */
.cat-slider-section {
  padding: 60px 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Centered title + description */
.cat-slider-header {
  text-align: center;
  margin-bottom: 36px;
}
.cat-slider-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cat-slider-desc {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* Outer wrapper: arrows flank the viewport */
.cat-slider-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Arrow buttons */
.slider-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  color: var(--text);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 14px;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.slider-btn:hover   { background: var(--red); color: white; border-color: var(--red); }
.slider-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* View all link below slider */
.cat-slider-viewall {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--red);
  text-decoration: none;
  border: 1.5px solid var(--red); border-radius: 50px;
  padding: 9px 22px; transition: all .2s;
}
.cat-slider-viewall:hover { background: var(--red); color: white; }

/* Viewport clips overflow */
.cat-slider-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.cat-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}

/* Cards — 4 visible on desktop (≥1024px), 3 on tablet, 1.2 on mobile */
.cat-slider-card {
  flex: 0 0 clamp(200px, 22vw, 272px);
  width:  clamp(200px, 22vw, 272px);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}
.cat-slider-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }

/* Card image */
.cat-slider-card .pkg-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.cat-slider-card .pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s; display: block;
}
.cat-slider-card:hover .pkg-img-wrap img { transform: scale(1.06); }

/* Stacked badges (Featured + % Off) */
.csc-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.csc-badges .pkg-badge { position: static; }
.csc-disc-badge {
  display: inline-block;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  width: fit-content;
}

/* Card body */
.cat-slider-card .pkg-body { padding: 14px 16px 18px; }

/* Rating + duration row */
.csc-top-row {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 7px;
}
.csc-top-row .stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.csc-rating-val { color: var(--muted); }
.csc-dur { margin-left: auto; white-space: nowrap; }

/* Destination label */
.csc-dest {
  font-size: 12px; color: var(--muted2);
  margin-bottom: 5px; font-weight: 500;
}

/* Title — 2-line clamp */
.cat-slider-card .pkg-title {
  font-size: 15px; font-weight: 700;
  color: var(--text); line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* Price row */
.csc-price {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.csc-from { font-size: 12px; color: var(--muted); }
.csc-price .price-now { font-size: 18px; font-weight: 800; color: var(--red); }
.csc-price .price-old {
  font-size: 12px; color: var(--muted2);
  text-decoration: line-through;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative; height: 240px; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28) 0%, rgba(0,0,0,.65) 100%);
}
.page-hero-content { position: relative; z-index: 1; padding-bottom: 32px; color: white; }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(24px, 4vw, 40px);
  font-weight: 700; line-height: 1.15; margin-bottom: 6px;
}
.page-hero-content p { font-size: 15px; opacity: .85; }

/* ─── PACKAGES LISTING (packages.php) ─── */
.packages-page { padding: 40px 0 64px; }
.packages-filter-bar {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  margin-bottom: 20px; box-shadow: var(--shadow); flex-wrap: wrap;
}
.search-field {
  display: flex; align-items: center; gap: 9px; flex: 1; min-width: 160px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r2); padding: 9px 13px; transition: border-color .2s;
}
.search-field:focus-within { border-color: var(--red); }
.search-field i { color: var(--red); font-size: 13px; flex-shrink: 0; }
.search-field input, .search-field select {
  border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 14px; color: var(--text); width: 100%;
}
.search-btn {
  background: var(--red); color: white; border: none; border-radius: var(--r2);
  padding: 10px 18px; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.search-btn:hover { background: var(--red2); }
.clear-filter {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--muted); font-size: 13px; text-decoration: none;
  padding: 8px 12px; border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.clear-filter:hover { color: var(--red); background: var(--redbg); }

/* ─── DESTINATIONS ─── */
.destinations-section { padding: 64px 0; background: var(--bg); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dest-card {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: block;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%); }
.dest-name {
  position: absolute; bottom: 14px; left: 14px;
  color: white; font-family: var(--font-display); font-size: 19px;
  font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ─── WHY US ─── */
.why-section { padding: 64px 0; background: var(--text); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px 18px; text-align: center; color: white; transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.09); }
.why-icon {
  width: 50px; height: 50px; background: var(--red); border-radius: 13px;
  display: grid; place-items: center; margin: 0 auto 14px; font-size: 20px; color: white;
}
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ─── ABOUT ─── */
.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: 20px; left: 20px; background: var(--red); color: white;
  padding: 13px 16px; border-radius: 13px; display: flex; flex-direction: column;
}
.about-badge strong { font-size: 19px; font-weight: 800; }
.about-badge span   { font-size: 11.5px; opacity: .85; }
.about-text { display: flex; flex-direction: column; gap: 14px; }
.about-text p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.about-list i  { color: var(--red); font-size: 13px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 64px 0; background: var(--text); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; }
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; }
.testi-card p { color: rgba(255,255,255,.75); font-size: 13.5px; font-style: italic; line-height: 1.7; margin-bottom: 14px; }
.testi-author strong { display: block; color: white; font-size: 13.5px; }
.testi-author span   { color: var(--red); font-size: 12px; }

/* ─── CTA ─── */
.cta-section { padding: 56px 0; background: var(--red); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-display); font-size: 28px; color: white; margin-bottom: 8px; }
.cta-text p  { color: rgba(255,255,255,.8); font-size: 14px; max-width: 440px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: white; color: var(--red); border: none;
  padding: 11px 26px; border-radius: 50px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary:hover { background: var(--dark); color: white; }
.btn-ghost {
  background: transparent; color: white; border: 2px solid rgba(255,255,255,.5);
  padding: 11px 22px; border-radius: 50px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.15); }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; padding-bottom: 44px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 12px; line-height: 1.7; }
.footer-brand-logo .brand-name        { color: var(--red); }
.footer-brand-logo .brand-name strong { color: white; }
.social-links { display: flex; gap: 9px; margin-top: 14px; }
.social-links a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: grid; place-items: center; color: rgba(255,255,255,.6);
  text-decoration: none; font-size: 14px; transition: all .2s;
}
.social-links a:hover { background: var(--red); color: white; }
.footer-col h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a  { display: block; color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-col p  { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 9px; display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
.footer-col p i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 12px; }


.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 13px; font-family: var(--font-body); font-size: 14px;
  color: var(--text); outline: none; transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); background: white; }
.form-field textarea { resize: vertical; min-height: 72px; }
.btn-submit {
  width: 100%; background: var(--red); color: white; border: none;
  padding: 13px; border-radius: 12px; font-family: var(--font-body);
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.btn-submit:hover { background: var(--red2); }
.form-note { text-align: center; color: var(--muted2); font-size: 11px; margin-top: 9px; }
.form-success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 54px; height: 54px; background: #16a34a; border-radius: 50%;
  color: white; font-size: 22px; display: grid; place-items: center; margin: 0 auto 14px;
}
.form-success h4 { font-size: 19px; margin-bottom: 7px; }
.form-success p  { color: var(--muted); }

/* ─── PACKAGE DETAIL PAGE ─── */
/* ── Package Detail Hero ── */
.pkg-detail-hero {
  position: relative; height: 500px; overflow: hidden;
}
.pkg-detail-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.80) 100%);
}
.pkg-detail-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding-bottom: 40px; color: white;
}
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,.65);
  margin-bottom: 14px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 9px; opacity: .7; }
.pkg-hero-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red); color: white;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.pkg-detail-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.pkg-detail-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.92);
}
.pkg-detail-meta span { display: flex; align-items: center; gap: 6px; }
.pkg-detail-meta i { opacity: .85; }

/* ── Linear content sections ── */
.pkg-section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.pkg-section:last-child { border-bottom: none; }
.pkg-section-title {
  font-size: 19px; font-weight: 700; color: var(--text);
  margin-bottom: 16px; display: flex; align-items: center; gap: 9px;
}

.pkg-detail-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 32px; padding-top: 36px; padding-bottom: 64px; align-items: start;
}
.gallery-strip { display: flex; gap: 9px; overflow-x: auto; margin-bottom: 24px; padding-bottom: 4px; scrollbar-width: thin; }
.gallery-strip img { width: 148px; height: 100px; object-fit: cover; border-radius: 9px; flex-shrink: 0; cursor: pointer; transition: all .2s; border: 2px solid transparent; }
.gallery-strip img:hover { transform: scale(1.04); border-color: var(--red); }

.detail-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; scrollbar-width: none; }
.detail-tabs::-webkit-scrollbar { display: none; }
.dtab {
  padding: 10px 18px; border: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s; white-space: nowrap;
}
.dtab:hover { color: var(--text); }
.dtab.active { color: var(--red); border-bottom-color: var(--red); }
.dtab-content { display: none; }
.dtab-content.active { display: block; }

.pkg-description { margin-bottom: 24px; }
.pkg-description p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.detail-section-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.highlights-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 24px; }
.highlights-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 14px; color: var(--text); line-height: 1.5; }
.highlights-list i  { color: var(--red); margin-top: 2px; flex-shrink: 0; font-size: 12px; }

.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-list, .exc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.inc-list li, .exc-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 14px; color: var(--text); line-height: 1.5; }
.inc-list i { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.exc-list i { color: var(--red);   flex-shrink: 0; margin-top: 2px; }

/* ── Itinerary Accordion ─────────────────────── */
.itin-wrap { padding: 4px 0; }

.itin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.itin-main-title {
  font-size: 20px; font-weight: 700; color: var(--text);
}
.itin-expand-all-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600; color: var(--red);
  padding: 4px 0; transition: opacity .2s;
}
.itin-expand-all-btn:hover { opacity: .75; }

/* Timeline container — left dashed vertical line */
.itin-timeline { position: relative; }
.itin-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  border-left: 2px dashed #d1d5db;
  z-index: 0;
}

/* Each day block */
.itin-day { position: relative; }

/* Dashed divider between days */
.itin-divider {
  border-top: 1px dashed #e5e7eb;
  margin-left: 28px;
}
.itin-day:first-child .itin-divider { display: none; }

/* Row: dot + Day X label + title + chevron */
.itin-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; cursor: pointer;
  user-select: none;
}

/* Red dot on timeline */
.itin-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; z-index: 1;
}

/* "Day X" pill */
.itin-day-label {
  flex-shrink: 0;
  font-size: 14px; font-weight: 700; color: var(--red);
  border: 1.5px solid var(--red); border-radius: 50px;
  padding: 4px 14px; background: white;
  white-space: nowrap;
}

/* Day title text */
.itin-day-title {
  flex: 1; font-size: 15px; font-weight: 600;
  color: var(--text); line-height: 1.4;
}

/* Chevron */
.itin-chevron {
  flex-shrink: 0; font-size: 14px; color: var(--muted);
  transition: transform .25s;
}

/* Expanded body */
.itin-body {
  margin-left: 50px; padding-bottom: 18px;
}
.itin-bullets {
  list-style: disc; padding-left: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.itin-bullets li {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}
.itin-body p {
  font-size: 14px; color: var(--muted); line-height: 1.75;
}

@media (max-width: 480px) {
  .itin-day-title { font-size: 14px; }
  .itin-day-label { font-size: 13px; padding: 3px 11px; }
  .itin-body { margin-left: 36px; }
}

.booking-card {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px; box-shadow: var(--shadow);
}
.sticky-card { position: sticky; top: 80px; }
.booking-price { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.booking-old     { font-size: 13.5px; color: var(--muted2); text-decoration: line-through; display: block; margin-bottom: 3px; }
.discount-badge  { display: inline-block; background: #dcfce7; color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-bottom: 7px; }
.booking-now     { font-size: 30px; font-weight: 800; color: var(--red); line-height: 1; display: flex; align-items: baseline; gap: 5px; }
.booking-now span { font-size: 13px; color: var(--muted); font-weight: 500; }
.booking-meta-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }
.booking-meta-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text); }
.booking-meta-list i  { color: var(--red); width: 16px; text-align: center; flex-shrink: 0; }
.btn-whatsapp {
  width: 100%; background: #25d366; color: white; border: none; border-radius: 11px;
  padding: 12px; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 7px; text-decoration: none; margin-top: 9px; transition: background .2s;
}
.btn-whatsapp:hover { background: #1dbb57; }
.booking-call-btn {
  width: 100%; background: white; color: var(--red); border: 2px solid var(--red);
  border-radius: 11px; padding: 11px 14px; font-family: var(--font-body);
  font-size: 14px; font-weight: 700; cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; margin-top: 9px; transition: background .2s, color .2s;
}
.booking-call-btn:hover { background: var(--red); color: white; }
.booking-call-btn i { font-size: 14px; }
.booking-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; display: flex; align-items: flex-start; gap: 5px; }
.booking-note i { flex-shrink: 0; margin-top: 2px; color: var(--red); }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; background: rgba(255,255,255,.1); border: none; color: white; font-size: 21px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox-close:hover { background: rgba(255,255,255,.2); }

.related-section { background: var(--bg); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; width: 52px; height: 52px;
  background: #25d366; color: white; border-radius: 50%; display: grid;
  place-items: center; font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 500; text-decoration: none; transition: transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Mobile Bottom Nav ───────────────── */
.mob-bottom-nav {
  display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .dest-grid  { grid-template-columns: repeat(3, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .packages-grid.three-col { grid-template-columns: repeat(2, 1fr); }
  .pkg-detail-layout { grid-template-columns: 1fr 300px; gap: 24px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .btn-quote,
  .btn-call,
  .btn-enquire { display: none; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-heading h1 { font-size: clamp(26px, 7vw, 38px); }
  .service-grid { max-width: 100%; gap: 9px; }
  .tile-emoji   { font-size: 26px; }
  .tile-label   { font-size: 11px; }
  .service-tile { padding: 14px 8px; gap: 7px; min-height: 72px; }

  /* Hero search */
  .hero-search {
    flex-direction: column;
    border-radius: 16px;
    padding: 13px;
    gap: 9px;
    align-items: stretch;
  }
  .search-divider  { display: none; }
  .search-date-btn { display: none; }
  .search-explore-btn { width: 100%; justify-content: center; padding: 13px; border-radius: 12px; }
  .search-input-wrap  { width: 100%; }

  /* Quick search — stacked with proper radius */
  .quick-search-form { flex-direction: column; height: auto; border-radius: 14px; overflow: hidden; }
  .qs-field { padding: 13px 16px; width: 100%; }
  .qs-sep   { width: 100%; height: 1px; }
  .qs-btn   { width: 100%; justify-content: center; padding: 14px; border-radius: 0 0 14px 14px; }

  /* Filter tabs — horizontal scroll instead of wrapping */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { flex-shrink: 0; }

  /* Package grid — 2 col */
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .packages-grid.three-col { grid-template-columns: repeat(2, 1fr); }

  /* Packages filter bar */
  .packages-filter-bar { flex-direction: column; align-items: stretch; gap: 8px; }
  .search-field { min-width: 100%; }
  .search-btn   { width: 100%; justify-content: center; border-radius: 10px; }
  .clear-filter { align-self: flex-start; }

  /* Category slider */
  .cat-slider-section { padding: 36px 0 32px; }
  .cat-slider-header  { margin-bottom: 24px; }
  .cat-slider-title   { font-size: 20px; }
  .cat-slider-desc    { font-size: 13.5px; }
  .cat-slider-outer   { gap: 8px; padding: 0 12px; }
  .cat-slider-card    { flex: 0 0 72vw; width: 72vw; }
  .slider-btn         { width: 38px; height: 38px; font-size: 12px; }
  .cat-slider-viewall { font-size: 13px; padding: 8px 18px; }

  /* Layout sections */
  .dest-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 260px; }
  .testi-grid  { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-inner   { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Package detail */
  .pkg-detail-hero { height: 320px; }
  .pkg-detail-hero-content h1 { font-size: clamp(20px, 6vw, 32px); }
  .pkg-detail-meta { gap: 12px; font-size: 12.5px; }
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-detail-sidebar { order: -1; }
  .sticky-card { position: static; }
  .highlights-list { grid-template-columns: 1fr; }
  .inc-exc-grid    { grid-template-columns: 1fr; }
  .page-hero  { height: 200px; }

  /* Popup — add bottom padding so it clears the bottom nav */
  .popup-overlay { padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px)); align-items: flex-end; }
  .popup-card    { max-height: calc(92vh - 62px); border-radius: 20px 20px 14px 14px; }

  /* Hide desktop WhatsApp float — in bottom nav */
  .whatsapp-float { display: none; }

  /* Bottom nav */
  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -3px 16px rgba(0,0,0,.09);
    padding: 4px 0 env(safe-area-inset-bottom, 4px);
  }
  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 4px 5px;
    min-height: 52px;
    color: #9ca3af;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    -webkit-tap-highlight-color: transparent;
    transition: color .15s;
  }
  .mob-nav-item i   { font-size: 20px; line-height: 1; }
  .mob-nav-item.active { color: var(--red); }
  .mob-nav-wa          { color: #25d366; }

  /* Push page content above bottom nav */
  body { padding-bottom: 62px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Package grid — single column */
  .packages-grid { grid-template-columns: 1fr; gap: 14px; }
  .packages-grid.three-col { grid-template-columns: 1fr; }

  /* Slider — almost full width */
  .cat-slider-card {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  /* Nav brand */
  .brand-name { font-size: 17px; }
  .brand-icon { width: 32px; height: 32px; font-size: 13px; }

  .dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-grid  { grid-template-columns: 1fr; }
  .dest-name { font-size: 15px; }

  .hero { min-height: 420px; }
  .hero-heading h1 { font-size: clamp(22px, 8vw, 32px); }
  .hero-heading p  { font-size: 13px; }
  .service-tile { padding: 11px 5px; }
  .tile-emoji   { font-size: 22px; }
  .tile-label   { font-size: 10px; }

  .booking-card { padding: 16px 14px; }
  .booking-now  { font-size: 24px; }

  /* Popup full-screen feel on small phones */
  .popup-card { padding: 20px 16px 18px; }
  .popup-header h3 { font-size: 17px; }

  /* Section spacing */
  .section { padding: 44px 0; }
  .cat-slider-section { padding: 32px 0; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }

  /* Why grid — single column on very small */
  .why-card { padding: 18px 14px; }
}


/* ─── POPUP ─── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.2s;
}
.popup-close:hover { background: var(--border); }
.popup-header {
  margin-bottom: 20px;
  padding-right: 24px;
}
.popup-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.popup-header p {
  font-size: 14px;
  color: var(--muted);
}

.popup-overlay.show { display: flex; }