/* ============================================================
   DEMOUNTS — Global design system
   Premium · light · spacious · conversion-focused
   ============================================================ */

:root {
  /* Brand palette */
  --blue-900: #0B3A82;
  --blue-800: #0F47A0;
  --blue-600: #155EEF;
  --blue-100: #E8EEFB;
  --yellow: #F5C542;
  --yellow-dark: #E0B020;
  --gold: #D9A62E;
  --ink: #111827;
  --slate: #64748B;
  --slate-300: #CBD5E1;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --green: #16A34A;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing / shape */
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --container: 1200px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 18px -6px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 40px -16px rgba(15, 23, 42, 0.22);
  --ring: 0 0 0 3px rgba(21, 94, 239, 0.18);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; line-height: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; margin: 0; color: var(--ink); }
p { margin: 0; }
::selection { background: var(--blue-900); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--slate-50); }
.section-tight { padding: 3rem 0; }
.grid { display: grid; gap: 1.5rem; }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-600);
}
.eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: var(--gold); }
.section-head { max-width: 680px; margin-bottom: 2.75rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { content: ""; width: 1.5rem; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin: 0.65rem 0 0.75rem; }
.section-sub { color: var(--slate); font-size: 1.05rem; }
.serif { font-family: var(--font-serif); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; line-height: 1.5;
  padding: 0.8rem 1.5rem; border-radius: 0.7rem; border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--blue-900); color: #fff; }
.btn-primary:hover { background: var(--blue-800); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--yellow); color: var(--blue-900); }
.btn-secondary:hover { background: var(--yellow-dark); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--blue-900); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue-600); background: var(--blue-100); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: #128a3e; box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.86rem; border-radius: 0.6rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 999px; letter-spacing: 0.02em;
}
.badge-blue { background: var(--blue-100); color: var(--blue-900); }
.badge-gold { background: #FBF1D8; color: #8a6a12; }
.badge-green { background: #E7F6EC; color: #147a3c; }
.badge-white { background: rgba(255,255,255,0.92); color: var(--blue-900); }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.86rem; font-weight: 600; color: var(--ink);
  background: var(--slate-50); border: 1px solid var(--border);
  padding: 0.45rem 0.85rem; border-radius: 999px;
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-slate { color: var(--slate); }
.text-blue { color: var(--blue-900); }
.font-semibold { font-weight: 600; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* Icon sizing (inline SVG helpers) */
.w-3\.5 { width: 0.875rem; } .h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }

/* Color helpers */
.text-gold { color: var(--gold); }
.text-slate-300 { color: var(--slate-300); }

/* Flex & spacing helpers */
.inline-flex { display: inline-flex; }
.justify-center { justify-content: center; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--blue-900); color: #DCE6F8; font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.topbar-links { display: flex; align-items: center; gap: 1.4rem; }
.topbar a { display: inline-flex; align-items: center; gap: 0.4rem; color: #DCE6F8; transition: color 0.15s; }
.topbar a:hover { color: var(--yellow); }
.topbar-phone { font-weight: 600; letter-spacing: 0.01em; }
.topbar-note { display: inline-flex; align-items: center; gap: 0.4rem; color: #AFC3E8; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 800; color: var(--blue-900); }
.logo-image { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; }
.logo-copy { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 1.35rem; letter-spacing: -0.01em; }
.logo-tagline { margin-top: 0.28rem; font-size: 0.58rem; font-weight: 700; line-height: 1.15; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; opacity: 0.72; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600)); color: var(--yellow);
  font-size: 1.1rem; font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 0.25rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink);
  padding: 0.55rem 0.8rem; border-radius: 0.5rem; transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--blue-900); background: var(--slate-100); }
.nav-link .chev { transition: transform 0.2s; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px; padding: 0.5rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown:hover .chev, .dropdown.open .chev { transform: rotate(180deg); }
.dropdown-menu a { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.75rem; border-radius: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.dropdown-menu a:hover { background: var(--slate-50); color: var(--blue-900); }
.destination-menu-image { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--border); }
.package-menu { min-width: 280px; }
.package-menu > a { justify-content: space-between; }
.package-menu .dropdown-featured { justify-content: flex-start; padding: 0.8rem; margin-bottom: 0.35rem; background: var(--slate-50); }
.dropdown-featured span:last-child { display: flex; flex-direction: column; gap: 0.15rem; }
.dropdown-featured small { color: var(--slate); font-size: 0.72rem; font-weight: 500; }
.dropdown-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 0.55rem; color: var(--blue-900); background: rgba(11,58,130,0.1); }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.hamburger { display: none; background: none; border: 1px solid var(--border); border-radius: 0.6rem; padding: 0.5rem; color: var(--ink); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 60; background: rgba(15,23,42,0.4);
}
.mobile-menu.open { display: block; }
.mobile-panel {
  position: absolute; top: 0; right: 0; width: min(340px, 88vw); height: 100%;
  background: var(--white); overflow-y: auto; padding: 1.25rem; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.25s ease;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 0.5rem; font-family: var(--font-head); font-weight: 600; border-bottom: 1px solid var(--slate-100); }
.mobile-sub { margin: 0.25rem 0 0.5rem 0.5rem; padding: 0.35rem 0 0.35rem 0.75rem; border-left: 2px solid rgba(11,58,130,0.16); background: var(--slate-50); border-radius: 0 0.65rem 0.65rem 0; }
.mobile-sub a { padding: 0.65rem 0.6rem; font-weight: 500; font-size: 0.9rem; color: var(--slate); }
.mobile-sub .mobile-destination-link { justify-content: flex-start; gap: 0.65rem; }
.mobile-destination-link .destination-menu-image { width: 32px; height: 32px; flex-basis: 32px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(7,26,58,0.86) 0%, rgba(7,26,58,0.55) 45%, rgba(7,26,58,0.28) 100%); }
.hero-content { max-width: 720px; padding: 5rem 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--yellow); font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-title { color: #fff; font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin: 1rem 0 1.1rem; }
.hero-sub { color: rgba(255,255,255,0.86); font-size: 1.1rem; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* Hero carousel */
.hero-carousel { display: block; min-height: 780px; }
.hero-carousel .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; display: flex; align-items: center; }
.hero-carousel .hero-slide.active { opacity: 1; }
.hero-carousel .hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-carousel .hero-slide-shade { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(7,26,58,0.86) 0%, rgba(7,26,58,0.55) 45%, rgba(7,26,58,0.28) 100%); }
.hero-carousel .hero-slide .container { position: relative; z-index: 1; }
.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,0.15); color: #fff; display: grid; place-items: center; transition: background 0.15s ease; }
.hero-nav:hover { background: rgba(255,255,255,0.32); }
.hero-nav.prev { left: 1.25rem; }
.hero-nav.next { right: 1.25rem; }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 0.5rem; }
.hero-dots .dot { width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-dots .dot.active { background: var(--yellow); transform: scale(1.35); }

/* Hero search bar */
.plan-trip-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--blue-900);
  background: linear-gradient(135deg, var(--yellow), var(--gold), var(--yellow));
  background-size: 220% 220%;
  padding: 0.55rem 1.4rem; border-radius: 999px; border: none; cursor: pointer;
  margin-top: 1.5rem;
  animation: plan-flash 2.5s ease-in-out infinite;
}
@keyframes plan-flash {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 0 0 0 rgba(245,197,66,0.75); }
  50% { background-position: 100% 50%; box-shadow: 0 0 0 16px rgba(245,197,66,0); }
}

.search-bar {
  margin-top: 0.75rem; background: rgba(255,255,255,0.98); border-radius: 1rem;
  padding: 0.6rem; display: grid; grid-template-columns: 1.3fr 1fr 1.1fr 0.9fr auto; gap: 0.5rem;
  box-shadow: var(--shadow-lg); max-width: 860px;
}
.search-field { padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.6rem; background: #fff; }
.search-field label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.search-field select, .search-field input { width: 100%; min-width: 0; border: 0; outline: 0; background-color: transparent; color: var(--ink); font-weight: 600; }
.search-bar .btn { height: 100%; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; }
.trust-item > .ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-900); }
.trust-item b { display: block; font-family: var(--font-head); font-size: 0.92rem; }
.trust-item span { font-size: 0.78rem; color: var(--slate); }

/* ---------- Cards (generic) ---------- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--slate-100); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.35rem; }

/* Destination card */
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; align-items: flex-end; color: #fff; }
.dest-card.tall { min-height: 420px; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,58,0.05) 30%, rgba(7,26,58,0.82) 100%); }
.dest-card .info { position: relative; padding: 1.5rem; width: 100%; }
.dest-card h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.4rem; }
.dest-card .meta { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0.3rem 0 0.9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.2rem; }
.dest-card .price { color: var(--yellow); font-weight: 700; font-family: var(--font-head); }

/* Package card */
.package-card { display: flex; flex-direction: column; }
.package-card .card-img .badge { position: absolute; top: 0.9rem; left: 0.9rem; }
.package-card .rating { position: absolute; bottom: 0.9rem; right: 0.9rem; }
.rating { display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(255,255,255,0.95); padding: 0.3rem 0.6rem; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--ink); }
.package-title { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.85rem; }
.package-summary { font-size: 0.9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.9rem; }
.package-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0 0.9rem; color: var(--slate); font-size: 0.86rem; }
.package-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.inclusion-row { display: flex; flex-wrap: nowrap; gap: 0.35rem; padding: 0.85rem 0; border-top: 1px solid var(--slate-100); margin-top: auto; justify-content: space-between; }
.inclusion-row span { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.64rem; font-weight: 700; color: var(--blue-900); white-space: nowrap; }
.inclusion-row span svg { color: var(--gold); flex: 0 0 auto; width: 0.75rem; height: 0.75rem; }

/* Scrollable long-text block (About This Tour) */
.scroll-text { height: 160px; overflow-y: scroll; padding-right: 0.75rem; color: var(--slate); font-size: 1.02rem; line-height: 1.7; scrollbar-width: thin; scrollbar-color: var(--blue-600) var(--slate-100); }
.scroll-text::-webkit-scrollbar { width: 6px; }
.scroll-text::-webkit-scrollbar-track { background: var(--slate-100); border-radius: 999px; }
.scroll-text::-webkit-scrollbar-thumb { background: var(--blue-600); border-radius: 999px; }
.package-foot { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.price-from { font-size: 0.78rem; color: var(--slate); }
.price-val { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--blue-900); white-space: nowrap; }

/* Experience / category / offer card */
.experience-card, .category-card, .offer-card, .hotel-card, .blog-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.experience-card img, .category-card img, .offer-card img, .hotel-card img, .blog-card img { width: 100%; height: 100%; object-fit: cover; }
.experience-card { aspect-ratio: 1 / 1; }
.category-card { aspect-ratio: 4 / 3; }
.hotel-card { aspect-ratio: 4 / 5; }
.experience-card .shade, .category-card .shade, .offer-card .shade, .hotel-card .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,58,0.1) 35%, rgba(7,26,58,0.8) 100%); }
.experience-card .info, .category-card .info, .offer-card .info, .hotel-card .info { position: absolute; inset: auto 0 0 0; padding: 1.25rem; color: #fff; }
.experience-card h3, .category-card h3, .hotel-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.9rem; }
.experience-card .info p, .category-card .info p, .hotel-card .info p { line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5rem; }
.experience-card > .badge, .hotel-card > .badge { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; }

/* Blog card */
.blog-card { background: var(--white); border: 1px solid var(--border); }
.blog-card .card-img { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card .card-img img { transition: transform 0.45s ease; }
.blog-card:hover .card-img img { transform: scale(1.035); }
.blog-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,20,45,0.03) 20%, rgba(5,20,45,0.9) 100%); }
.blog-image-copy { position: absolute; z-index: 1; inset: auto 0 0; padding: 1.25rem; color: #fff; display: grid; gap: 0.55rem; }
.blog-image-copy strong { color: #fff; font-family: var(--font-head); font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-image-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.blog-image-meta time { white-space: nowrap; }
.blog-read-link { margin-left: auto; color: var(--blue-900); font-weight: 700; }
.blog-cat { font-size: 0.76rem; font-weight: 700; color: var(--blue-600); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.12rem; font-weight: 700; margin: 0.5rem 0; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--blue-900); }
.blog-meta { color: var(--slate); font-size: 0.82rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blog-meta > span, .blog-meta > a { display: inline-flex; align-items: center; gap: 0.4rem; line-height: 1.2; white-space: nowrap; }
.blog-meta svg { display: inline-block; flex: 0 0 auto; }
.blog-read-link svg { transition: transform 0.2s ease; }
.blog-card:hover .blog-read-link svg { transform: translateX(3px); }

/* Testimonial card */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.testimonial-card .quote { color: var(--slate); font-size: 0.98rem; margin: 1rem 0 1.25rem; }
.t-author { display: flex; align-items: center; gap: 0.8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--blue-100); display: grid; place-items: center; color: var(--blue-900); font-weight: 700; flex: 0 0 46px; }
.t-author b { font-family: var(--font-head); font-size: 0.95rem; }
.t-author span { font-size: 0.8rem; color: var(--slate); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--blue-900); letter-spacing: -0.02em; }
.stat .lbl { color: var(--slate); font-size: 0.92rem; margin-top: 0.3rem; }

/* How it works steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.step { text-align: center; position: relative; padding: 0 0.5rem; }
.step .num {
  width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--blue-900); color: var(--yellow);
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { color: var(--slate); font-size: 0.9rem; }

/* Why cards */
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card > .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-900); margin-bottom: 1rem; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--slate); font-size: 0.92rem; }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 0; }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; padding: 1.1rem 1.4rem; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink);
}
.accordion-btn .chev { transition: transform 0.2s; color: var(--slate); flex: 0 0 auto; }
.accordion-item.open .accordion-btn .chev { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-panel-inner { padding: 0 1.4rem 1.25rem; color: var(--slate); font-size: 0.95rem; }
.accordion-panel-inner p, .accordion-panel-inner li { color: var(--slate); }

/* Itinerary day badge */
.day-badge {
  flex: 0 0 auto; min-width: 68px; text-align: center; padding: 0.5rem;
  background: var(--blue-100); color: var(--blue-900); border-radius: 0.6rem;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
}

/* ---------- Lists (inclusions etc.) ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--slate); font-size: 0.95rem; }
.check-list li .ic { color: var(--green); flex: 0 0 auto; margin-top: 0.1rem; }
.check-list.cross li .ic { color: #DC2626; }

/* ---------- Select dropdowns (custom chevron) ---------- */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    padding-right: 2.4rem;
}

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.field .req { color: #DC2626; }
.input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 0.6rem;
  background-color: var(--white); color: var(--ink); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.field select { padding-right: 2.4rem; }
.input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.alert { padding: 0.9rem 1rem; border-radius: 0.6rem; font-weight: 600; font-size: 0.92rem; }
.alert-success { background: #E7F6EC; color: #147a3c; border: 1px solid #BBE7C8; }
.alert-error { background: #FDEBEB; color: #B91C1C; border: 1px solid #F5C2C2; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 0.86rem; color: var(--slate); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }
.breadcrumbs a:hover { color: var(--blue-900); }
.breadcrumbs .sep { color: var(--slate-300); }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: 7rem 0; background: var(--blue-900); color: #fff; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.16; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin: 0.5rem 0 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 640px; }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumbs .current { color: #fff; }
.page-hero .breadcrumbs a:hover { color: #fff; }
.packages-page-hero { padding-top: 8rem; padding-bottom: 8rem; }
.page-hero .packages-main-heading { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; }
.packages-main-heading span { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #C4D3EE; padding: 4rem 0 0; }
.footer a { color: #C4D3EE; transition: color 0.15s; }
.footer a:hover { color: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.footer .about p { font-size: 0.92rem; margin: 1rem 0 1.25rem; color: #AFC3E8; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact .ic { color: var(--yellow); flex: 0 0 auto; margin-top: 0.1rem; }
.social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.08); }
.social a:hover { background: var(--yellow); color: var(--blue-900); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.newsletter-form input { flex: 1; padding: 0.7rem 0.9rem; border-radius: 0.6rem; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; outline: none; }
.newsletter-form input::placeholder { color: #AFC3E8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: #AFC3E8; }
.pay-icons { display: flex; gap: 0.5rem; align-items: center; }
.pay-icon { width: 76px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: #fff; padding: 0.45rem 0.65rem; border-radius: 7px; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.pay-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* ---------- Floating elements ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(22,163,74,0.4);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 54;
  display: none; gap: 0.6rem; padding: 0.7rem 1rem;
  background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -6px 18px rgba(15,23,42,0.08);
}
.mobile-cta .btn { flex: 1; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 70; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.5); }
.modal-panel { position: relative; width: 100%; max-width: 460px; background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
#planModal .modal-panel { max-width: 560px; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: 0; color: var(--slate); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; background: rgba(7,15,30,0.96); padding: 1.25rem; }
.lightbox.open { display: flex; }
.lightbox-shell { width: min(1180px, 100%); max-height: 96vh; display: flex; flex-direction: column; gap: 0.8rem; }
.lightbox-stage { min-height: 0; display: grid; grid-template-columns: 52px minmax(0, 1fr) 52px; align-items: center; gap: 1rem; }
.lightbox-stage figure { min-width: 0; margin: 0; }
.lightbox-image { display: block; width: 100%; max-height: calc(96vh - 120px); object-fit: contain; border-radius: 0.7rem; background: #07101f; }
.lightbox-stage figcaption { display: flex; justify-content: space-between; gap: 1rem; padding-top: 0.6rem; color: rgba(255,255,255,0.78); font-size: 0.85rem; }
.lightbox-count { flex: 0 0 auto; color: #fff; font-weight: 700; }
.lightbox-close, .lightbox-nav { color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background 0.18s, transform 0.18s; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.24); transform: scale(1.05); }
.lightbox-close { position: absolute; z-index: 2; top: 1rem; right: 1rem; }
.lightbox-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.2rem 0.1rem 0.5rem; scrollbar-width: thin; }
.lightbox-thumbs button { width: 72px; height: 52px; padding: 0; flex: 0 0 auto; overflow: hidden; border: 2px solid transparent; border-radius: 0.45rem; background: transparent; opacity: 0.55; cursor: pointer; transition: opacity 0.18s, border-color 0.18s; }
.lightbox-thumbs button:hover, .lightbox-thumbs button.active { opacity: 1; border-color: var(--yellow); }
.lightbox-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Gallery grid ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.gallery a { aspect-ratio: 4 / 3; border-radius: 0.6rem; overflow: hidden; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery a:hover img { transform: scale(1.05); }
.gallery a.gallery-item-hidden { display: none; }
.gallery a:not(.gallery-item-hidden) { animation: galleryReveal 0.45s ease both; }
.gallery-load-wrap { position: relative; display: flex; justify-content: center; margin-top: 1.75rem; }
.gallery-load-wrap::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--border) 18%, var(--border) 82%, transparent); }
.gallery-load-more { position: relative; display: inline-flex; align-items: center; gap: 0.75rem; min-width: 245px; padding: 0.8rem 1.1rem; border: 1px solid rgba(37,99,235,0.2); border-radius: 999px; background: var(--white); color: var(--blue-900); box-shadow: 0 8px 24px rgba(15,23,42,0.09); cursor: pointer; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
.gallery-load-more:hover { transform: translateY(-2px); border-color: var(--blue-600); box-shadow: 0 12px 30px rgba(15,23,42,0.13); }
.gallery-load-more > span:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 0.12rem; }
.gallery-load-more strong { font-family: var(--font-head); font-size: 0.9rem; }
.gallery-load-more small { color: var(--slate); font-size: 0.7rem; }
.gallery-load-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--blue-900); }
.gallery-load-wrap.complete { display: none; }
@keyframes galleryReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Carousel ---------- */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.45s ease; }
.carousel-slide { flex: 0 0 100%; min-width: 0; display: block; }
.carousel-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.92); color: var(--blue-900);
    display: grid; place-items: center; box-shadow: var(--shadow-md);
    cursor: pointer; z-index: 2; transition: background 0.15s ease, transform 0.15s ease;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
    position: absolute; bottom: 0.9rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.45rem; z-index: 2;
}
.carousel-dots .dot {
    width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
    background: rgba(255,255,255,0.55); cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots .dot.active { background: #fff; transform: scale(1.35); }

/* ---------- Cards carousel (horizontal scroll) ---------- */
.cards-carousel { position: relative; padding-top: 3.25rem; }
.cards-carousel .carousel-btn { top: 0; transform: none; width: 40px; height: 40px; }
.cards-carousel .carousel-btn.prev { left: auto; right: 3.5rem; }
.cards-carousel .carousel-btn.next { right: 0; }
.cards-track {
    display: flex; gap: 1.25rem; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: 0.75rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cards-track::-webkit-scrollbar { display: none; }
.cards-slide { flex: 0 0 auto; width: 83%; max-width: 340px; scroll-snap-align: start; display: flex; }
.cards-slide > * { width: 100%; }
.cards-slide .package-card { flex: 1; }
.cards-carousel.sq .cards-slide { width: 55%; max-width: 240px; }
.cards-carousel.tall .cards-slide { width: 65%; max-width: 280px; }
@media (min-width: 720px) {
    .cards-slide { flex: 0 0 340px; width: 340px; max-width: 340px; }
    .cards-carousel.sq .cards-slide { flex: 0 0 240px; width: 240px; max-width: 240px; }
    .cards-carousel.tall .cards-slide { flex: 0 0 280px; width: 280px; max-width: 280px; }
}

/* Taller carousel cards on desktop */
.cards-slide .dest-card { min-height: 440px; }
.cards-slide .category-card { aspect-ratio: 3 / 4; }
.cards-slide .experience-card { aspect-ratio: 4 / 5; }
.cards-slide .hotel-card { aspect-ratio: 3 / 4; }
.cards-slide .blog-card .card-img { aspect-ratio: 4 / 3; }
.related-guides-carousel .cards-slide { flex-basis: calc((100% - 2.5rem) / 3); width: calc((100% - 2.5rem) / 3); max-width: none; }
.related-guides-carousel .blog-card { height: 100%; }

@media (max-width: 900px) {
  .related-guides-carousel .cards-slide { flex-basis: calc((100% - 1.25rem) / 2); width: calc((100% - 1.25rem) / 2); }
}

/* Taller carousel cards on mobile */
@media (max-width: 720px) {
  .pay-icons { justify-content: center; flex-wrap: wrap; }
  .pay-icon { width: 68px; height: 35px; }
  .related-guides-carousel .cards-slide { flex-basis: 86%; width: 86%; }
  .lightbox { padding: 0.75rem; }
  .lightbox-stage { grid-template-columns: 1fr; gap: 0; }
  .lightbox-nav { position: absolute; z-index: 2; top: 50%; width: 42px; height: 42px; background: rgba(7,15,30,0.62); }
  .lightbox-nav.prev { left: 0.9rem; }
  .lightbox-nav.next { right: 0.9rem; }
  .lightbox-image { max-height: calc(100vh - 150px); }
  .lightbox-stage figcaption { padding-inline: 0.2rem; }
  .lightbox-caption { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .lightbox-thumbs button { width: 62px; height: 46px; }
  .packages-page-hero { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .page-hero .packages-main-heading { font-size: clamp(2.25rem, 11vw, 3.25rem); }
    .cards-slide .dest-card { min-height: 520px; }
    .cards-slide .category-card { aspect-ratio: 2 / 3; }
    .cards-slide .experience-card { aspect-ratio: 2 / 3; }
    .cards-slide .hotel-card { aspect-ratio: 2 / 3; }
    .cards-slide .blog-card .card-img { aspect-ratio: 3 / 2; }
    .cards-slide .testimonial-card { min-height: 340px; }
}

/* ---------- Package filters ---------- */
.package-filters { margin-bottom: 2rem; padding: 1.4rem; border: 1px solid var(--border); border-radius: 1.1rem; background: var(--white); box-shadow: 0 12px 35px rgba(15,23,42,0.07); }
.filter-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1.1rem; }
.filter-heading h2 { margin-top: 0.25rem; font-size: 1.25rem; }
.filter-eyebrow { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--blue-600); font-family: var(--font-head); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.filter-result { padding: 0.45rem 0.75rem; border-radius: 999px; background: var(--blue-50); color: var(--blue-900); font-size: 0.82rem; white-space: nowrap; }
.filter-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)) auto; gap: 0.7rem; align-items: end; }
.filter-control { min-width: 0; padding: 0.6rem 0.75rem; border: 1px solid var(--border); border-radius: 0.75rem; background: var(--slate-50); transition: border-color 0.18s, box-shadow 0.18s, background 0.18s; }
.filter-control:focus-within { border-color: var(--blue-600); background: var(--white); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.filter-control.has-value { border-color: rgba(37,99,235,0.45); background: var(--blue-50); }
.filter-control > span { display: block; margin-bottom: 0.2rem; color: var(--slate); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.filter-control select { width: 100%; min-width: 0; padding: 0.15rem 1.5rem 0.15rem 0; border: 0; outline: 0; background-color: transparent; background-position: right center; color: var(--ink); font-family: var(--font-head); font-size: 0.84rem; font-weight: 700; }
.filter-apply { min-height: 58px; padding-inline: 1.15rem; white-space: nowrap; }
.filter-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--slate-100); color: var(--slate); font-size: 0.8rem; }
.filter-reset { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--blue-900); font-weight: 700; }
.filter-reset:hover { color: var(--blue-600); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ---------- Sticky sidebar ---------- */
.sticky-col { position: sticky; top: 92px; }
.content-grid { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

/* ---------- Prose (blog body) ---------- */
.prose { color: var(--slate); font-size: 1.05rem; line-height: 1.8; }
.prose h2 { color: var(--ink); font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.prose h3 { color: var(--ink); font-size: 1.2rem; margin: 1.5rem 0 0.6rem; }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); }
.article-intro { color: var(--ink); font-size: 1.2rem; line-height: 1.7; font-weight: 600; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 1.75rem; font-size: 0.94rem; }
.prose th, .prose td { padding: 0.8rem; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.prose th { background: var(--slate-50); color: var(--ink); }
.prose blockquote { margin: 1.5rem 0; padding: 1rem 1.2rem; border-left: 4px solid var(--gold); background: var(--slate-50); color: var(--ink); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.article-lead-form { display: grid; gap: 0.8rem; margin-top: 1rem; }
.article-share { margin-top: 2.5rem; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--slate-50); display: grid; gap: 0.4rem; }
.article-share-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-apply { width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .hamburger { display: inline-flex; }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-bar .btn { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .package-filters { padding: 1rem; border-radius: 0.9rem; }
  .filter-heading { align-items: flex-start; }
  .filter-heading h2 { font-size: 1.1rem; }
  .filter-result { font-size: 0.75rem; }
  .filter-grid { grid-template-columns: 1fr; }
  .filter-control { padding: 0.7rem 0.8rem; }
  .filter-control select { font-size: 0.9rem; }
  .filter-apply { min-height: 50px; }
  .filter-footer { align-items: flex-start; flex-direction: column; gap: 0.55rem; }
  .section { padding: 3.25rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .trust-inner { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0.75rem; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex: 0 0 auto; width: 75%; max-width: 280px; scroll-snap-align: start; background: var(--slate-50); border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.9rem; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
  .mobile-cta { display: flex; }
  .wa-float { display: none; }
  .hero { min-height: 560px; }
  .hero-carousel { min-height: 640px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
