/* ═══════════════════════════════════════════════════════════════
   BURUDANI ADVENTURE PARK — Complete Theme Styles
   WordPress + Astra Theme Customization
   ═══════════════════════════════════════════════════════════════ */

:root {
  --forest: #1a3d2b;
  --leaf: #2d6a4f;
  --lime: #52b788;
  --lime-light: #74c69d;
  --yellow: #f4d03f;
  --earth: #8b5e3c;
  --cream: #fdf8f0;
  --charcoal: #1c1c1c;
  --charcoal2: #242424;
  --mid: #4a4a4a;
  --white: #ffffff;
  --danger: #e74c3c;
  --orange: #e67e22;
  --vh: 1vh;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Mobile viewport optimizations */
@supports (height: 100dvh) {
  body {
    height: 100dvh;
  }
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: #e8c626;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-green {
  background: var(--lime);
  color: var(--charcoal);
}

.btn-green:hover {
  background: #3da875;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--forest);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section-title.dark {
  color: var(--charcoal);
}

.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--forest);
  padding: 7px 0;
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 18px;
  opacity: 0.85;
  transition: all 0.2s;
}

.top-bar a:hover {
  opacity: 1;
  color: var(--yellow);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: blink 2s infinite;
  margin-right: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── NAV ── */
nav {
  background: #161616;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid var(--lime);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: inline;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 3px;
  transition: all 0.2s;
}

.nav-links a:hover {
  background: var(--forest);
  color: var(--lime);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--charcoal) !important;
  margin-left: 10px !important;
}

.nav-cta:hover {
  background: #e8c626 !important;
}

/* Mobile Sidebar Navigation */
.nav-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #161616;
  border-right: 3px solid var(--lime);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nav-sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 2px solid rgba(82, 183, 136, 0.3);
}

.logo-sidebar {
  font-size: 1.3rem;
  gap: 8px;
}

.logo-sidebar .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--lime);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 8px;
  transition: transform 0.2s;
}

.sidebar-close:hover {
  transform: rotate(90deg);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.sidebar-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.sidebar-links a:hover {
  background: rgba(82, 183, 136, 0.1);
  border-left-color: var(--lime);
  color: var(--lime);
}

.sidebar-links .nav-cta {
  background: var(--yellow) !important;
  color: var(--charcoal) !important;
  margin: 16px 12px !important;
  border-left: none !important;
}

.sidebar-links .nav-cta:hover {
  background: #e8c626 !important;
}

/* Sidebar Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, #071510 0%, #1a3d2b 45%, #0d2618 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 65% 45%, rgba(82, 183, 136, 0.1) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 36px;
  right: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  z-index: 2;
  background: rgba(26, 61, 43, 0.85);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(82, 183, 136, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(82, 183, 136, 0.2);
  transition: all 0.3s ease;
}

.hero-stat::before {
  content: var(--stat-icon, '');
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero-stat:hover {
  background: rgba(82, 183, 136, 0.1);
  border-color: rgba(82, 183, 136, 0.5);
  transform: translateY(-2px);
}

.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* ── TICKER ── */
.ticker {
  background: var(--yellow);
  color: var(--charcoal);
  padding: 11px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 56px;
  animation: tick 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--charcoal);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FILTER BAR ── */
.filter-bar {
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  position: sticky;
  top: 68px;
  z-index: 90;
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 4px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--charcoal);
}

.filter-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
}

@keyframes activity-card-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card-pattern-drift {
  from {
    transform: translate3d(-10px, -8px, 0);
  }
  to {
    transform: translate3d(10px, 8px, 0);
  }
}

@keyframes card-scanline {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

/* ── ACTIVITY CARD ── */
.activity-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(155deg, rgba(26, 34, 30, 0.94) 0%, rgba(12, 18, 15, 0.96) 100%);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(126, 233, 180, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  animation: activity-card-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.activity-grid .activity-card:nth-child(2) { animation-delay: 0.08s; }
.activity-grid .activity-card:nth-child(3) { animation-delay: 0.16s; }
.activity-grid .activity-card:nth-child(4) { animation-delay: 0.24s; }
.activity-grid .activity-card:nth-child(5) { animation-delay: 0.32s; }
.activity-grid .activity-card:nth-child(6) { animation-delay: 0.4s; }

.activity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(126, 233, 180, 0.08);
  background: radial-gradient(circle at 15% 15%, rgba(82, 183, 136, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.35s ease, opacity 0.35s ease;
}

.activity-card::after {
  content: '';
  position: absolute;
  inset: -80% -120%;
  background: linear-gradient(115deg, transparent 35%, rgba(133, 248, 191, 0.28) 50%, transparent 65%);
  transform: translateX(-35%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.9s ease, opacity 0.45s ease;
}

.activity-card > * {
  position: relative;
  z-index: 2;
}

.activity-card:hover {
  border-color: var(--lime);
  transform: perspective(1100px) translateY(-10px) rotateX(2.5deg) scale(1.01);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(82, 183, 136, 0.34);
}

.activity-card:hover::before,
.activity-card:focus-within::before {
  border-color: rgba(126, 233, 180, 0.42);
}

.activity-card:hover::after,
.activity-card:focus-within::after {
  transform: translateX(32%);
  opacity: 1;
}

.activity-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 208, 63, 0.28);
}

.card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 9, 7, 0.05) 20%, rgba(4, 10, 8, 0.62) 100%);
  z-index: 1;
}

.card-media::after {
  content: '';
  position: absolute;
  inset: -100% 0;
  background: linear-gradient(180deg, transparent 40%, rgba(126, 233, 180, 0.18) 50%, transparent 60%);
  opacity: 0;
  z-index: 1;
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.activity-card:hover .card-bg {
  transform: scale(1.13) translateY(-6px);
  filter: saturate(1.2) brightness(1.04);
}

.activity-card:hover .card-media::after,
.activity-card:focus-within .card-media::after {
  animation: card-scanline 1.1s linear;
  opacity: 0.9;
}

.bg1 { background: linear-gradient(155deg, #071a0e 0%, #1e5c3a 100%); }
.bg2 { background: linear-gradient(155deg, #2d1a0d 0%, #7a4520 100%); }
.bg3 { background: linear-gradient(155deg, #1a2d0d 0%, #3d6b1e 100%); }
.bg4 { background: linear-gradient(155deg, #0d1a2d 0%, #1e3d6b 100%); }
.bg5 { background: linear-gradient(155deg, #1a2d20 0%, #2d5c3f 100%); }
.bg6 { background: linear-gradient(155deg, #2d200d 0%, #6b4e1e 100%); }
.bg7 { background: linear-gradient(155deg, #2d0d0d 0%, #6b1e1e 100%); }
.bg8 { background: linear-gradient(155deg, #1a0d2d 0%, #3d1e6b 100%); }
.bg9 { background: linear-gradient(155deg, #2d0d1a 0%, #7a1e4a 100%); }
.bg10 { background: linear-gradient(155deg, #0d2d1a 0%, #1e6b45 100%); }
.bg11 { background: linear-gradient(155deg, #1a1a0d 0%, #4a4a1e 100%); }
.bg12 { background: linear-gradient(155deg, #0d0d2d 0%, #1a1a6b 100%); }
.bg13 { background: linear-gradient(155deg, #2d1a00 0%, #7a4800 100%); }

.card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0L30 15L15 30L0 15Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 34px;
  mix-blend-mode: screen;
  animation: card-pattern-drift 14s linear infinite alternate;
}

.card-emoji {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 2.2rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.activity-card:hover .card-emoji,
.activity-card:focus-within .card-emoji {
  transform: translateY(-4px) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
}

.card-tags {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  z-index: 2;
}

.card-tag-group {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(126, 233, 180, 0.28);
  backdrop-filter: blur(8px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

.card-tag-pop {
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

.card-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(126, 233, 180, 0.3);
  backdrop-filter: blur(4px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  z-index: 2;
}

.card-body {
  padding: 22px 22px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  flex: 1;
}

.thrill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.thrill-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.thrill-meter {
  display: flex;
  gap: 4px;
}

.thrill-pip {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.thrill-pip.filled-1 { background: #52b788; }
.thrill-pip.filled-2 { background: #a3d977; }
.thrill-pip.filled-3 { background: #f4d03f; }
.thrill-pip.filled-4 { background: #e67e22; }
.thrill-pip.filled-5 { background: #e74c3c; }

.thrill-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thrill-text.t1 { color: #52b788; }
.thrill-text.t2 { color: #a3d977; }
.thrill-text.t3 { color: #f4d03f; }
.thrill-text.t4 { color: #e67e22; }
.thrill-text.t5 { color: #e74c3c; }

.card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.meta-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 233, 180, 0.15);
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.activity-card:hover .meta-chip,
.activity-card:focus-within .meta-chip {
  border-color: rgba(126, 233, 180, 0.38);
  color: rgba(255, 255, 255, 0.9);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid rgba(126, 233, 180, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(82, 183, 136, 0.06));
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

.card-price small {
  font-size: 0.8rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0;
}

.card-book {
  background: linear-gradient(120deg, #52b788, #73dba6);
  color: #0f1714;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 8px 16px rgba(82, 183, 136, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
}

.card-book:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 24px rgba(82, 183, 136, 0.38);
}

.card-quickview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 233, 180, 0.28);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  margin-right: 8px;
}

.card-quickview:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(82, 183, 136, 0.08);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .activity-card,
  .activity-card::after,
  .activity-card::before,
  .card-media::after,
  .card-pattern,
  .card-bg,
  .card-emoji,
  .meta-chip,
  .card-book,
  .card-quickview {
    animation: none !important;
    transition: none !important;
  }

  .activity-card:hover,
  .activity-card:focus-within {
    transform: none;
  }
}

/* ── MODALS ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #1e1e1e;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  padding: 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: white;
}

.modal h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.modal > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%234a4a4a' d='M5 7L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ── QUICK VIEW MODAL (Activities) ── */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qv-overlay.open {
  display: flex;
}

.qv-modal {
  background: #1e1e1e;
  border-radius: 8px;
  max-width: 450px;
  width: 100%;
  padding: 36px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.qv-close:hover {
  color: white;
}

.qv-emoji {
  font-size: 3rem;
  margin-bottom: 14px;
}

.qv-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--white);
}

.qv-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 12px;
}

.qv-thrill {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qv-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.qv-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.qv-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px 30px;
  background: var(--yellow);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.qv-btn:hover {
  background: #e8c626;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

/* ── STICKY BOOK BAR ── */
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest);
  color: var(--white);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-book-bar.visible {
  display: flex;
}

.sbb-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sbb-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.sbb-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
},

.sbb-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  white-space: nowrap;
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--lime);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 700;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: #3da875;
  transform: translateY(-3px);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 850;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.wa-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: 'Barlow', sans-serif;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ── FAQ ── */
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-q.open {
  background: var(--forest);
  color: var(--lime);
}

.faq-ic {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.open .faq-ic {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.faq-a.open {
  max-height: 200px;
}

.faq-ai {
  padding: 0 22px 18px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN — Mobile First Approach
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET (1024px and below) ── */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  /* Navbar - Show Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    height: 56px;
  }

  .logo {
    font-size: 1.4rem;
    gap: 8px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  /* Hero Stats */
  .hero-stats {
    bottom: auto;
    right: auto;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -30px;
    width: calc(100% - 40px);
    max-width: 400px;
    gap: 14px;
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
  }

  .hero p {
    font-size: 1rem;
  }

  /* Booking Grid */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Top Bar */
  .top-bar-inner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.75rem;
  }

  .top-bar-left {
    gap: 12px;
    flex-direction: column;
  }

  .top-bar a {
    margin-left: 8px;
    font-size: 0.7rem;
  }
}

/* ── MOBILE (768px and below) ── */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Typography */
  .btn {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    line-height: 1;
  }

  .section-label {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  /* Hero Section */
  .hero {
    min-height: 85vh;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 0;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    padding: 10px;
    font-size: 0.8rem;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .hero-stat span {
    font-size: 0.6rem;
  }

  .hero-scroll {
    display: none !important;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  /* Ticker */
  .ticker {
    padding: 8px 0;
  }

  .ticker-track {
    gap: 40px;
  }

  .ticker-item {
    font-size: 0.8rem;
  }

  /* Filter Bar */
  .filter-bar {
    padding: 12px 0;
  }

  .filter-inner {
    font-size: 0.75rem;
    gap: 6px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.75rem;
  }

  .filter-sep {
    display: none;
  }

  /* Activity Grid */
  .activity-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .activity-card {
    margin-bottom: 0;
  }

  .card-duration {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .card-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .card-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .card-meta {
    gap: 6px;
    margin-bottom: 10px;
  }

  .meta-chip {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .thrill-row {
    gap: 6px;
    margin-bottom: 10px;
  }

  .thrill-label {
    font-size: 0.75rem;
  }

  .thrill-text {
    font-size: 0.7rem;
  }

  .thrill-meter {
    gap: 4px;
  }

  .thrill-pip {
    width: 8px;
    height: 8px;
  }

  .card-footer {
    gap: 8px;
    flex-direction: column;
  }

  .card-price {
    font-size: 1rem;
  }

  .card-quickview,
  .card-book {
    font-size: 0.75rem;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
  }

  /* Booking Section */
  .booking-section {
    padding: 50px 0;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-form {
    padding: 24px;
  }

  .booking-form h3 {
    font-size: 1.4rem;
  }

  .booking-perks li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .perk-check {
    width: 20px;
    height: 20px;
    font-size: 0.55rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    padding: 40px 0 20px;
  }

  footer .container > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .footer-col h5 {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }

  /* Floating Elements */
  .back-top,
  .wa-float {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 16px;
  }

  .wa-float {
    bottom: 80px;
  }

  /* Sticky Bar */
  .sticky-book-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 12px 16px;
  }

  .sbb-left {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }

  .sbb-tag {
    font-size: 0.65rem;
  }

  .sbb-name {
    font-size: 0.95rem;
  }

  .sbb-price {
    font-size: 1rem;
  }

  /* Modals */
  .modal-overlay {
    padding: 16px;
  }

  .modal {
    padding: 20px;
    border-radius: 6px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .modal p {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    top: 12px;
    right: 12px;
  }

  /* Top Bar */
  .top-bar {
    padding: 8px 0;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.7rem;
  }

  .top-bar-left {
    gap: 10px;
    flex-direction: column;
  }

  .top-bar a {
    margin-left: 0;
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .top-bar-left span {
    display: block;
    word-break: break-word;
  }

  /* Nav */
  nav {
    border-bottom-width: 2px;
  }

  .nav-inner {
    height: 56px;
    gap: 12px;
  }
}

/* ── SMALL MOBILE (480px and below) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  /* Navbar Refinements */
  .logo {
    font-size: 1.2rem;
  }

  .logo-text {
    white-space: nowrap;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    gap: 4px;
  }

  .hamburger span {
    width: 20px;
    height: 2.5px;
  }

  /* Sidebar Refinement */
  .nav-sidebar {
    width: 75vw;
    left: -75vw;
  }

  .sidebar-header {
    padding: 12px;
  }

  .logo-sidebar {
    font-size: 1.1rem;
    gap: 6px;
  }

  .logo-sidebar .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .sidebar-close {
    font-size: 1.8rem;
    padding: 0 4px;
  }

  .sidebar-links {
    padding: 12px 0;
  }

  .sidebar-links a {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .sidebar-links .nav-cta {
    margin: 12px 8px !important;
    padding: 10px 16px !important;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
    padding: 30px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-ctas {
    gap: 8px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero Stats */
  .hero-stats {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-stat {
    padding: 8px;
  }

  .hero-stat::before {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .hero-stat span {
    font-size: 0.55rem;
  }

  /* Section Title */
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  /* Activity Card */
  .activity-grid {
    gap: 12px !important;
  }

  .card-name {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }

  /* Footer Grid */
  footer [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Filter Bar */
  .filter-inner {
    font-size: 0.7rem;
    gap: 4px;
  }

  .filter-btn {
    padding: 6px 10px;
    font-size: 0.7rem;
    min-height: 40px;
  }

  .filter-label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }

  /* Sticky Bar */
  .sticky-book-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .sticky-book-bar .btn {
    min-height: 42px;
    padding: 8px 16px;
  }

  .sbb-left {
    gap: 4px;
  }

  /* Booking Form */
  .booking-form {
    padding: 18px;
  }

  .booking-form h3 {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    padding: 12px 12px;
    font-size: 16px;
  }

  /* Modals */
  .modal {
    padding: 16px;
    margin: 16px;
  }

  .modal h3 {
    font-size: 1.1rem;
  }

  .modal .btn {
    min-height: 42px;
  }
}

/* ── RESPONSIVE MEDIA & FORMS ── */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  box-sizing: border-box;
  max-width: 100%;
}

/* Prevent horizontal scroll on mobile */
body {
  width: 100%;
  max-width: 100%;
}

/* ── UTILITY CLASSES ── */
.hide-mobile {
  display: none !important;
}

.hide-desktop {
  display: block !important;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: block !important;
  }

  .hide-desktop {
    display: none !important;
  }
}

/* Responsive text alignment */
.text-center-mobile {
  text-align: left;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }
}

/* Responsive display utilities */
.flex-col-mobile {
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .flex-col-mobile {
    flex-direction: column;
  }
}

/* ── TOUCH-FRIENDLY TARGETS ── */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .filter-btn,
  .card-quickview,
  .card-book,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    font-size: 16px;
    padding: 12px;
  }

  a {
    min-height: 44px;
    padding: 8px 12px;
  }
}
