/* =========================================================
   Thai Malay Connect DMC — Global Stylesheet
   Palette: Teal / Emerald Green / Navy (กรมท่า) / Golden Yellow
   Fonts: Plus Jakarta Sans (headings), Poppins (body)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&family=Yeseva+One&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --navy: #1e3a5f;
  --navy-deep: #0f2040;
  --navy-soft: #2d5070;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --teal-bright: #2DD4BF;
  --teal-tint: #CCFBF1;
  --gold: #D97706;
  --gold-light: #F59E0B;
  --yellow: #FCD34D;
  --yellow-soft: #FEF3C7;
  --green: #059669;
  --green-soft: #10B981;
  --green-tint: #D1FAE5;
  --cream: #F0FDFA;
  --cream-2: #E6FFFA;
  --white: #ffffff;
  --ink: #1f2733;
  --muted: #4d6475;
  --line: #B2E0DC;

  --shadow-sm: 0 4px 14px rgba(13, 148, 136, 0.07);
  --shadow-md: 0 12px 30px rgba(13, 148, 136, 0.12);
  --shadow-lg: 0 22px 50px rgba(13, 148, 136, 0.18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --container: 1200px;
  --header-h: 78px;

  --font-head: "Plus Jakarta Sans", "Poppins", sans-serif;
  --font-body: "Poppins", "Inter", system-ui, -apple-system, sans-serif;

  --t: 0.28s ease;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Clip horizontal overflow at the root so the off-screen mobile drawer
   can't be reached by scrolling/swiping. overflow-x: clip is used (not
   hidden) because it does not break the sticky header. */
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; font-weight: 700; }

.amp { font-family: 'Yeseva One', Georgia, serif; font-weight: 400; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 84px 0; }
.section--slim { padding: 20px 0; }
.section--cream { background: var(--cream-2); }
.section--navy { background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%); color: #e9eef6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px;
  padding-bottom: 18px; position: relative;
}
.section-head h2::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-soft));
}
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section--navy .section-head p { color: #a5c5c0; }

/* Split intro: image left, content right */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.intro-split__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.intro-split__body { max-width: 560px; }
.intro-split__body h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: 0 0 16px; padding-bottom: 16px; position: relative;
}
.intro-split__body h2::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-soft));
}
.intro-split__body p { color: var(--muted); font-size: 1.02rem; }
.intro-split__body p + p { margin-top: 14px; }
@media (max-width: 860px) {
  .intro-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Team split: image left, heading + card grid right */
.team-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.team-split__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.team-split__body { min-width: 0; }
.team-split__body h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: 0 0 14px; padding-bottom: 16px; position: relative;
}
.team-split__body h2::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-soft));
}
.team-split__body > p { color: var(--muted); font-size: 1.02rem; max-width: 60ch; }
@media (max-width: 900px) {
  .team-split { grid-template-columns: 1fr; gap: 32px; }
  .team-split__media img { min-height: 240px; }
}
/* compact feature list (right side of team split) */
.team-feats {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.team-feats li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 15px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.team-feats li:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.team-feats__ic {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--teal), var(--navy-soft));
  color: #fff; display: grid; place-items: center; font-size: 1.05rem;
}
.team-feats h3 { font-size: 0.95rem; margin: 0 0 3px; }
.team-feats p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 560px) {
  .team-feats { grid-template-columns: 1fr; }
  /* Our Services + Team Building: horizontal auto-scroll + swipe strip on mobile */
  .svc-split .team-feats,
  .team-split .team-feats {
    grid-template-columns: none;
    display: flex; flex-wrap: nowrap; gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-top: 20px; padding-bottom: 4px;
  }
  .svc-split .team-feats::-webkit-scrollbar,
  .team-split .team-feats::-webkit-scrollbar { display: none; }
  .svc-split .team-feats li,
  .team-split .team-feats li { flex: 0 0 72%; }
}
/* full-width collage banner + wide feature list */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.team-banner { max-width: 840px; margin-inline: auto; }
.team-banner__img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.team-feats--wide { grid-template-columns: repeat(3, 1fr); margin-top: 26px; }
@media (max-width: 760px) { .team-feats--wide { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team-feats--wide { grid-template-columns: 1fr; } }

/* services split: scenic image left (fills height) + services list right */
.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.svc-split__body { min-width: 0; }
.svc-split__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.svc-split__body h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: 0 0 14px; padding-bottom: 16px; position: relative;
}
.svc-split__body h2::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-soft));
}
.svc-split__body > p { color: var(--muted); font-size: 1.02rem; max-width: 60ch; }
@media (max-width: 900px) {
  .svc-split { grid-template-columns: 1fr; gap: 32px; }
  .svc-split__media img { min-height: 240px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--teal) 0%, var(--green-soft) 100%); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: linear-gradient(135deg, var(--teal-light) 0%, var(--green) 100%); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-light); }
.btn--yellow { background: var(--yellow); color: var(--navy-deep); }
.btn--yellow:hover { background: #fde68a; }
.btn--outline { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--teal); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--wide { width: 100%; }

.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb858; }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05a648; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
/* Frosted background lives on a pseudo-element so the header itself does NOT
   become the containing block for the fixed mobile drawer (backdrop-filter on
   the header would trap the drawer to the header box instead of the viewport).
   At the very top the header is translucent glass; once scrolled it turns solid white. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  pointer-events: none;
  transition: background var(--t);
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header.scrolled::before { background: rgba(255,255,255,0.98); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 56px; width: auto; display: block; }
.footer .brand__logo { height: 72px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy-soft));
  display: grid; place-items: center;
  color: var(--gold-light); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20,184,166,.4);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.12rem; }
.brand__tag { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-weight: 600; }

.menu { display: flex; align-items: center; gap: 30px; }
.menu a {
  font-size: 0.93rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
  transition: color var(--t);
}
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--teal); transition: width var(--t);
}
.menu a:hover, .menu a.active { color: var(--teal); }
.menu a:hover::after, .menu a.active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  /* Tuck the hero up behind the sticky header so the glass bar overlays the
     image at the top of the page (header turns solid white once scrolled). */
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,32,64,.78) 0%, rgba(30,58,95,.50) 55%, rgba(13,148,136,.20) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; padding: 70px 0; }

/* ---------- Missing-image placeholders (mark photos still to add) ---------- */
.img-ph {
  width: 100%; height: 100%; min-height: 150px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: var(--cream-2); border: 2px dashed #a0ceca;
  color: var(--muted); text-align: center; padding: 14px;
  font-weight: 600; font-size: 0.82rem; line-height: 1.3;
}
.img-ph b { color: var(--teal); font-size: 1rem; }
.img-ph small { font-weight: 500; font-size: 0.72rem; opacity: 0.75; }
.dest-card .img-ph { position: relative; z-index: 3; }

.hero--noimg { background: linear-gradient(105deg, var(--navy-deep), var(--teal)); }
.hero__phnote {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); border: 1px dashed rgba(255,255,255,.55);
  color: #fff; padding: 6px 12px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 600;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,.18); border: 1px solid rgba(45,212,191,.5);
  color: var(--teal-bright); padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: .06em; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold-light); }
.hero__keymsg {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--teal-bright); letter-spacing: .02em;
  margin: -8px 0 22px; opacity: .95;
}
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.18rem); color: #e3e9f2; max-width: 600px; margin-bottom: 30px; }

/* Last-row centering for 11-card destination grid */
.dest-grid--home { justify-items: center; }
.dest-grid--home .dest-card { width: 100%; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero--inner { min-height: 52vh; }
.hero--inner .hero__inner { text-align: center; max-width: 820px; margin-inline: auto; }
.hero--inner .breadcrumb { color: var(--teal-bright); font-size: 0.85rem; font-weight: 500; margin-top: 14px; }

/* ---------- Search Bar ---------- */
.search-wrap { position: relative; z-index: 5; margin-top: -46px; }
.search-bar {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px;
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 16px; align-items: end;
  border: 1px solid var(--line);
}
.search-bar .field { display: flex; flex-direction: column; gap: 6px; }
.search-bar label { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.search-bar select, .search-bar input {
  font-family: var(--font-body); font-size: 0.92rem; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  color: var(--ink); outline: none; transition: border var(--t);
}
.search-bar select:focus, .search-bar input:focus { border-color: var(--teal); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Feature / Why-choose card */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.feature__num {
  position: absolute; bottom: 14px; right: 18px;
  font-size: 2.8rem; font-weight: 800; font-family: var(--font-head);
  color: rgba(13,148,136,.09); line-height: 1; user-select: none;
  transition: color .25s ease;
}
.feature:hover .feature__num { color: rgba(13,148,136,.22); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-tint); color: var(--teal); margin-bottom: 18px; font-size: 1.5rem;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.94rem; }

/* Green brand accent (from logo "CONNECT DMC" banner) */
.halal-section .eyebrow { color: var(--green-soft); }
.halal-section .feature__icon { background: var(--green-tint); color: var(--green); }
.halal-section .feature:hover { border-color: var(--green-soft); }

/* ---------- Poster image section ---------- */
.section--poster-wrap { padding: 48px 0; }
.poster-img-link { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.poster-img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.poster-img-link:hover .poster-img { transform: scale(1.015); }

/* Service card (compact) */
.service-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 44px; box-shadow: var(--shadow-sm); text-align: left;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
/* gold accent line revealed on hover */
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover::before { transform: scaleX(1); }
/* arrow hint, bottom-right, fades in on hover */
.service-card::after {
  content: ""; position: absolute; right: 24px; bottom: 22px;
  width: 9px; height: 9px;
  border-top: 2px solid var(--teal); border-right: 2px solid var(--teal);
  transform: rotate(45deg) translateX(-4px); opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.service-card:hover::after { opacity: 1; transform: rotate(45deg) translateX(0); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.service-card .si {
  width: 54px; height: 54px; margin: 0 0 18px; border-radius: 15px;
  background: linear-gradient(135deg, var(--teal), var(--navy-soft)); color: #fff;
  display: grid; place-items: center; font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(13, 148, 136, .28);
  transition: transform var(--t);
}
.service-card:hover .si { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--muted); }

/* Tour package card */
.tour-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-card__media img { transform: scale(1.07); }
.tour-card__dur {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,148,136,.88); color: #fff; font-size: 0.76rem; font-weight: 600;
  padding: 6px 13px; border-radius: 50px;
}
.tour-card__tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow); color: var(--navy-deep); font-size: 0.72rem; font-weight: 600;
  padding: 6px 12px; border-radius: 50px;
}
.tour-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.stars span { color: var(--muted); font-size: 0.8rem; margin-left: 6px; letter-spacing: normal; }
.tour-card__body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.tour-card__route { font-size: 0.86rem; color: var(--muted); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 7px; }
.tour-card__route::before { content:""; width:1em; height:1em; flex:none; margin-top:.18em; background-color:currentColor; -webkit-mask:var(--ic-pin) center/contain no-repeat; mask:var(--ic-pin) center/contain no-repeat; }
.tour-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.tour-card__price small { color: var(--teal); font-size: 0.68rem; display: block; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.tour-card__price b { color: var(--navy); font-size: 1.1rem; font-family: var(--font-head); font-weight: 700; }

/* Tour card top stripe */
.tour-card::before {
  content: ""; display: block; height: 3px; flex-shrink: 0;
  background: linear-gradient(90deg, var(--teal), var(--green-soft));
}

/* Includes strip */
.tour-card__includes {
  display: flex; flex-wrap: wrap; gap: 6px 10px;
  margin: 10px 0 14px; padding: 10px 12px;
  background: var(--teal-tint); border-radius: var(--radius-sm);
}
.tour-card__includes span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.76rem; font-weight: 600; color: var(--teal);
}

/* Tag badge color variants */
.tour-card__tag[data-tag="best-seller"] {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff; box-shadow: 0 2px 10px rgba(217,119,6,.4);
}
.tour-card__tag[data-tag="corporate"] { background: var(--navy); color: #fff; }
.tour-card__tag[data-tag="schools"] { background: var(--green); color: #fff; }
.tour-card__tag[data-tag="heritage"] { background: var(--teal); color: #fff; }
.tour-card__tag[data-tag="grand-tour"] { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.tour-card__tag[data-tag="explorer"] { background: #ea580c; color: #fff; }
.tour-card__tag[data-tag="day-trip"] { background: #0ea5e9; color: #fff; }

/* Filter tabs (programs page) */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-tab {
  padding: 9px 22px; border-radius: 999px;
  border: 2px solid var(--teal);
  background: transparent; color: var(--navy);
  font-family: var(--ff-body); font-size: 0.87rem; font-weight: 500;
  cursor: pointer; transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.filter-tab:hover { background: rgba(13,148,136,.10); }
.filter-tab.active {
  background: var(--teal); color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}

/* Tour card — clickable */
.tour-card { cursor: pointer; }

/* Tour program modal */
.tour-modal__box { max-width: 900px; }
.tour-modal__badges {
  position: absolute; inset: 14px auto auto 14px;
  display: flex; gap: 8px;
}
.tour-modal__dur, .tour-modal__tag {
  position: static !important; top: auto !important; left: auto !important; right: auto !important;
}
.tour-modal__body { padding: 28px 32px 32px; }
.tour-modal__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px;
  margin-bottom: 28px;
}
.tour-modal__section-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
}
.tour-modal__days {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  counter-reset: day-counter;
}
.tour-modal__days li {
  padding-left: 32px; position: relative;
  font-size: 0.88rem; color: var(--ink); line-height: 1.5;
  counter-increment: day-counter;
}
.tour-modal__days li::before {
  content: counter(day-counter);
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.tour-modal__inc { grid-template-columns: 1fr; margin-bottom: 0; }

@media (max-width: 640px) {
  .tour-modal__cols { grid-template-columns: 1fr; gap: 20px; }
  .tour-modal__body { padding: 20px 20px 26px; }
}

/* Search results bar (programs page) */
.results-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 22px; margin-bottom: 30px; box-shadow: var(--shadow-sm);
}
.results-bar__count { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); font-weight: 700; }
.results-bar__tags { display: block; font-size: 0.86rem; color: var(--muted); margin-top: 2px; }
.results-bar__clear {
  font-size: 0.82rem; font-weight: 600; color: var(--navy); white-space: nowrap;
  border: 1px solid var(--line); border-radius: 50px; padding: 8px 16px; transition: all var(--t);
}
.results-bar__clear:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* Empty state when no program matches */
.no-results {
  text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-lg);
  padding: 48px 26px; box-shadow: var(--shadow-sm);
}
.no-results__icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: var(--teal-tint); color: var(--teal); font-size: 1.5rem;
}
.no-results h3 { font-size: 1.4rem; margin-bottom: 10px; }
.no-results p { color: var(--muted); max-width: 560px; margin: 0 auto 24px; }

/* Destination card */
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.09); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,64,.85) 0%, rgba(15,32,64,.1) 55%, transparent 100%);
}
.dest-card__label {
  position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2; color: #fff;
}
.dest-card__label h3 { color: #fff; font-size: 1.2rem; }
.dest-card__label span { font-size: 0.82rem; color: var(--teal-bright); display: flex; align-items: center; gap: 6px; }

/* ---------- Destination modal ---------- */
.dest-modal[hidden] { display: none; }
.dest-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(15,32,64,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.dest-modal.open {
  opacity: 1; visibility: visible;
  transition: opacity .3s ease;
}
.dest-modal__box {
  position: relative;
  background: #fff;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  max-width: 820px; width: 100%;
  max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.dest-modal.open .dest-modal__box {
  transform: translateY(0) scale(1);
}
.dest-modal__img-wrap {
  width: 100%; aspect-ratio: 16/7; overflow: hidden; flex-shrink: 0;
}
.dest-modal__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 38px; height: 38px;
  border-radius: 50%; border: none;
  background: rgba(15,32,64,.65);
  color: #fff; font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.dest-modal__close:hover { background: var(--teal); }
.dest-modal__body {
  padding: 28px 32px 32px;
  overflow-y: auto; flex: 1;
}
.dest-modal__sub { display: block; margin-bottom: 4px; }
.dest-modal__title { font-size: 1.9rem; margin-bottom: 10px; color: var(--navy); }
.dest-modal__desc { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.dest-modal__hl {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
.dest-modal__hl li {
  padding-left: 20px; position: relative;
  font-size: 0.92rem; color: var(--ink);
}
.dest-modal__hl li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.dest-modal .dest-modal__cta { display: inline-flex; }

@media (max-width: 600px) {
  .dest-modal__body { padding: 20px 20px 26px; }
  .dest-modal__title { font-size: 1.45rem; }
  .dest-modal__hl { grid-template-columns: 1fr; }
}

/* ---------- Testimonials Marquee ---------- */
.testi-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testi-track {
  display: flex; gap: 20px; width: max-content;
  animation: testi-scroll 40s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  width: 320px; flex-shrink: 0;
}
.testi__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: var(--ink); font-size: 0.93rem; font-style: italic; margin-bottom: 20px; line-height: 1.65; }
.testi__who { display: flex; align-items: center; gap: 13px; }
.testi__ava {
  width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-family: var(--font-head);
  flex-shrink: 0;
}
.testi__ava--gold  { background: var(--gold); }
.testi__ava--navy  { background: var(--navy); }
.testi__ava--green { background: var(--green); }
.testi__who b { display: block; color: var(--navy); font-size: 0.93rem; }
.testi__who small { color: var(--muted); font-size: 0.79rem; }

@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-light); font-weight: 800; display: block; }
.stat__label { font-size: 0.8rem; color: #a5c5c0; margin-top: 8px; letter-spacing: .08em; text-transform: uppercase; display: block; }
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg); padding: 56px clamp(24px, 5vw, 64px);
  text-align: center; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(253,211,77,.22), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: #d4edea; max-width: 580px; margin: 0 auto 26px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- About blocks ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.usp-list { display: grid; gap: 14px; margin-top: 8px; }
.usp-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 0.96rem; }
.usp-list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint);
  color: var(--teal); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 50px;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 500; color: var(--teal);
  box-shadow: var(--shadow-sm);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; height: 160px; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px 14px 12px; color: #fff; font-size: 0.84rem; font-weight: 500;
  background: linear-gradient(to top, rgba(15,32,64,.85), transparent);
}
/* Bento sizing */
.gallery figure:nth-child(1) { grid-column: span 2; }
.gallery figure:nth-child(2) { grid-row: span 2; height: calc(160px * 2 + 12px); }
.gallery figure:nth-child(5) { grid-column: span 2; }
.gallery figure:nth-child(8) { grid-column: span 2; }
.gallery figure:nth-child(9) { grid-column: span 2; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 36px; align-items: stretch; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .muted { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-field label .req { color: #c0392b; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.93rem; padding: 12px 13px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  color: var(--ink); outline: none; transition: border var(--t), box-shadow var(--t); width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.14); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; background: #e8f6ee; border: 1px solid #aedcc0; color: #1d6b3e;
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 18px;
}
.form-success.show { display: block; }

.info-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #e9eef6; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.info-map {
  flex: 1 1 auto; min-height: 200px; margin-top: 24px;
  border-radius: var(--radius); overflow: hidden;
}
.info-map iframe { width: 100%; height: 100%; min-height: 200px; border: 0; display: block; }
.info-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.info-card > p { color: #a5c5c0; font-size: 0.92rem; margin-bottom: 22px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-row .ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: rgba(13,148,136,.2);
  display: grid; place-items: center; color: var(--teal-bright); font-size: 1.1rem;
}
.info-row b { color: #fff; display: block; font-size: 0.92rem; font-weight: 600; }
.info-row span { color: #a5c5c0; font-size: 0.88rem; }
.wa-box {
  margin-top: 24px; background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.4);
  border-radius: var(--radius); padding: 20px;
}
.wa-box b { color: #fff; display: block; margin-bottom: 4px; }
.wa-box p { color: #a5c5c0; font-size: 0.85rem; margin-bottom: 14px; }

/* ---------- Contact Strip ---------- */
.contact-strip {
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 60px); flex-wrap: wrap;
}
.contact-strip__item {
  display: flex; align-items: center; gap: 14px; color: #fff; text-decoration: none;
}
.contact-strip__item .icon { width: 2rem; height: 2rem; color: var(--teal-bright); flex-shrink: 0; font-size: 1.4rem; }
.contact-strip__item b { display: block; font-weight: 700; font-size: 0.95rem; }
.contact-strip__item span { font-size: 0.82rem; color: #a5c5c0; }

/* ---------- Form group label ---------- */
.form-group-label {
  grid-column: 1 / -1; margin: 14px 0 2px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal); padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.form-group-label:first-child { margin-top: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #aeb9cc; padding: 64px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer .brand__name { color: #fff; }
.footer p { font-size: 0.9rem; color: #9aa6bd; margin: 16px 0; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer ul li { margin-bottom: 10px; }
.footer a { font-size: 0.9rem; color: #aeb9cc; transition: color var(--t); }
.footer a:hover { color: var(--teal-light); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; font-size: 0.95rem; transition: background var(--t);
}
.footer__social a:hover { background: var(--teal); color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.82rem; color: #8290a8;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform var(--t);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Floating LINE (stacked above WhatsApp) ---------- */
.line-float {
  position: fixed; right: 22px; bottom: 90px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #06c755; color: #fff;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(6,199,85,.45); transition: transform var(--t);
}
.line-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .search-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section--slim { padding: 20px 0; }
  .nav__toggle { display: flex; }

  /* ----- Premium right slide-out drawer ----- */
  .menu {
    position: fixed; top: 0; right: 0;
    width: min(82vw, 340px);
    height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 0;
    background:
      radial-gradient(120% 60% at 100% 0%, rgba(13,148,136,.28), transparent 60%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-left: 1px solid rgba(45,212,191,.3);
    padding: 44px 24px 28px;
    box-shadow: -26px 0 60px rgba(15,32,64,.38);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22,.61,.36,1), visibility 0s linear .42s;
    overflow-y: auto;
    visibility: hidden;
    z-index: 95;
  }
  .menu.open {
    transform: translateX(0); visibility: visible;
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
  }

  /* Brand logo + text at the top of the drawer */
  .menu .menu__brand {
    display: flex; align-items: center; gap: 12px;
    padding: 0 0 18px; margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
  }
  .menu .menu__brand:hover { background: none; padding-left: 0; }
  .menu .menu__brand-logo {
    width: 80px; height: auto; display: block; flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.2));
  }
  .menu .menu__brand-text {
    display: flex; flex-direction: column; gap: 3px; flex: 1;
  }
  .menu .menu__brand-mark {
    font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
    letter-spacing: 0.1em; color: var(--teal-bright);
    line-height: 1;
  }
  .menu .menu__brand-name {
    font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    color: #fff; line-height: 1.2;
  }
  .menu .menu__brand-name b { color: var(--teal-light); font-weight: 700; }
  .menu .menu__brand-tag {
    font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,.55); font-weight: 500; line-height: 1.3;
  }

  .menu a {
    width: 100%; padding: 15px 12px; border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.86); font-size: 1.02rem; font-weight: 500;
    border-radius: 10px; transition: background var(--t), color var(--t), padding var(--t);
    position: relative;
  }
  .menu a::after { display: none; }
  .menu a:hover, .menu a.active { color: #fff; background: rgba(255,255,255,.06); padding-left: 20px; }
  .menu a.active { box-shadow: inset 3px 0 0 var(--teal-light); }

  /* Social icons pinned at the bottom of the drawer */
  .menu .menu__social {
    margin-top: auto; display: flex; justify-content: center; gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .menu .menu__social a {
    width: 46px; height: 46px; padding: 0; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(13,148,136,.4);
    background: rgba(255,255,255,.06);
    color: #fff; font-size: 1.18rem;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  }
  .menu .menu__social a:hover {
    background: var(--teal); border-color: var(--teal); color: #fff;
    padding-left: 0; transform: translateY(-3px);
  }

  /* Dim backdrop behind the drawer */
  .menu-backdrop {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(15, 32, 64, 0.5); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .42s ease, visibility .42s ease;
  }
  .menu-backdrop.show { opacity: 1; visibility: visible; }
  /* Lock background scroll while the drawer is open. Both the root and body
     are locked because the scrolling element differs across mobile browsers. */
  html.menu-open, body.menu-open { overflow: hidden; overscroll-behavior: none; }

  .nav__actions .btn:not(.nav__toggle) { display: none; }

  /* ----- Footer first section centered (mobile only) ----- */
  .footer__grid > div:first-child {
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .footer__grid > div:first-child .brand {
    margin-bottom: 12px;
  }
  .footer__grid > div:first-child p {
    margin-bottom: 16px;
  }
  .footer__grid > div:first-child .footer__social {
    display: flex; justify-content: center; gap: 12px;
  }

  /* ----- Footer collapsible sections (mobile dropdown) ----- */
  .footer__toggle {
    cursor: pointer; user-select: none; position: relative; padding-right: 26px;
    transition: color var(--t);
  }
  .footer__toggle::after {
    content: "▼"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 0.7rem; opacity: 0.6; transition: transform var(--t);
  }
  .footer__toggle.open::after { transform: translateY(-50%) rotate(-180deg); }
  .footer__toggle:hover { color: var(--teal-light); }

  .footer__content {
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .footer__content.open { max-height: 500px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* Brand block + social row only belong in the mobile drawer */
.menu__brand,
.menu__social { display: none; }

@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(1), .gallery figure:nth-child(5),
  .gallery figure:nth-child(8), .gallery figure:nth-child(9) { grid-column: auto; }
  .gallery figure:nth-child(2) { grid-row: auto; height: 160px; }
  .search-bar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .flyer .hero__actions { flex-direction: column; }
  .flyer .hero__actions .btn { flex: 1 1 100%; width: 100%; }
}

/* ===== Animation System ===== */

/* 1 — Hero text stagger entrance */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1       { animation: hero-fade-up .62s ease both .25s; }
.hero__keymsg  { animation: hero-fade-up .62s ease both .4s; }
.hero__sub     { animation: hero-fade-up .62s ease both .55s; }
.hero__actions { animation: hero-fade-up .62s ease both .72s; }

/* 2 — Hero badge: fade-up entrance then gentle float */
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero__badge {
  animation:
    hero-fade-up .62s ease both .1s,
    badge-float 3.4s ease-in-out infinite .85s;
}

/* 3 — Primary button shimmer sweep */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  animation: shimmer-sweep 3s ease-in-out infinite 1.2s;
  pointer-events: none;
}
@keyframes shimmer-sweep {
  0%       { left: -120%; }
  45%, 100% { left: 160%; }
}

/* 4 — Best Seller badge glow pulse */
@keyframes best-seller-glow {
  0%, 100% { box-shadow: 0 2px 10px rgba(217,119,6,.4); }
  50%       { box-shadow: 0 4px 24px rgba(217,119,6,.75), 0 0 0 4px rgba(217,119,6,.14); }
}
.tour-card__tag[data-tag="best-seller"] {
  animation: best-seller-glow 2.4s ease-in-out infinite;
}

/* 5 — Card stagger — delay injected by JS via --delay custom prop */
.grid .reveal { transition-delay: var(--delay, 0ms); }
.grid .reveal:hover { transition-delay: 0ms; }

/* 6 — Stat number pop when scrolled into view */
@keyframes stat-pop {
  0%   { opacity: 0; transform: translateY(14px) scale(.88); }
  65%  { transform: translateY(-3px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.stat.in .stat__num {
  animation: stat-pop .62s cubic-bezier(.22,.61,.36,1) both;
}

/* Bouncy card hover — spring easing overrides */
:root { --spring: cubic-bezier(0.34, 1.56, 0.64, 1); }

.tour-card,
.feature,
.service-card {
  transition:
    transform 220ms var(--spring),
    box-shadow 220ms var(--spring),
    border-color 160ms ease;
}
.tour-card__media img { transition: transform 280ms var(--spring); }
.dest-card img { transition: transform 280ms var(--spring); }

.tour-card:hover {
  transform: translateY(-10px) scale(1.018);
  box-shadow: 0 32px 64px rgba(13,148,136,.22);
  border-color: var(--teal-light);
}
.feature:hover  { transform: translateY(-10px) scale(1.025); }
.service-card:hover { transform: translateY(-10px) scale(1.025); }
.dest-card:hover img { transform: scale(1.11); }

/* Feature icon pop on card hover */
@keyframes icon-pop {
  0%   { transform: scale(1)    rotate(0deg); }
  40%  { transform: scale(1.28) rotate(-8deg); }
  70%  { transform: scale(1.12) rotate(4deg); }
  100% { transform: scale(1)    rotate(0deg); }
}
.feature:hover .feature__icon { animation: icon-pop 0.3s var(--spring) forwards; }

/* Reduced motion — disable all decorative animations */
@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero h1, .hero__keymsg, .hero__sub, .hero__actions {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .btn--primary::after { display: none; }
  .tour-card__tag[data-tag="best-seller"] { animation: none; }
  .grid .reveal { transition-delay: 0ms !important; }
  .stat.in .stat__num { animation: none; }
  .tour-card, .feature, .service-card { transition: none; }
  .feature:hover .feature__icon { animation: none; }
}

/* ===== SVG Icon System (replaces emoji) ===== */
:root{
  --ic-wa:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27black%27%3E%3Cpath%20d%3D%27M12.04%202C6.58%202%202.13%206.45%202.13%2011.91c0%201.75.46%203.45%201.32%204.95L2%2022l5.25-1.38c1.45.79%203.08%201.21%204.79%201.21h.01c5.46%200%209.91-4.45%209.91-9.91C22.96%206.45%2018.51%202%2012.04%202zm5.8%2014.04c-.25.69-1.45%201.32-1.99%201.4-.51.08-1.16.11-1.87-.12-.43-.14-.98-.32-1.69-.62-2.97-1.28-4.91-4.27-5.06-4.47-.15-.2-1.21-1.61-1.21-3.07s.77-2.18%201.04-2.48c.27-.3.59-.37.79-.37.2%200%20.39%200%20.57.01.18.01.43-.07.67.51.25.59.84%202.05.91%202.2.07.15.12.32.02.52-.1.2-.15.32-.3.5-.15.18-.31.4-.45.54-.15.15-.3.31-.13.6.17.3.77%201.27%201.65%202.06%201.13%201.01%202.09%201.32%202.39%201.47.3.15.47.12.65-.07.18-.2.74-.86.94-1.16.2-.3.4-.25.67-.15.27.1%201.72.81%202.01.96.3.15.49.22.57.35.07.12.07.71-.18%201.4z%27%2F%3E%3C%2Fsvg%3E");
  --ic-search:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2711%27%20cy%3D%2711%27%20r%3D%277%27%2F%3E%3Cline%20x1%3D%2721%27%20y1%3D%2721%27%20x2%3D%2716.65%27%20y2%3D%2716.65%27%2F%3E%3C%2Fsvg%3E");
  --ic-map:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolygon%20points%3D%279%204%202%207%202%2020%209%2017%2015%2020%2022%2017%2022%204%2015%207%209%204%27%2F%3E%3Cline%20x1%3D%279%27%20y1%3D%274%27%20x2%3D%279%27%20y2%3D%2717%27%2F%3E%3Cline%20x1%3D%2715%27%20y1%3D%277%27%20x2%3D%2715%27%20y2%3D%2720%27%2F%3E%3C%2Fsvg%3E");
  --ic-shield:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z%27%2F%3E%3C%2Fsvg%3E");
  --ic-handshake:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27m11%2017%202%202a1%201%200%201%200%203-3%27%2F%3E%3Cpath%20d%3D%27m14%2014%202.5%202.5a1%201%200%201%200%203-3l-3.88-3.88a3%203%200%200%200-4.24%200l-.88.88a1%201%200%201%201-3-3l2.81-2.81a5.79%205.79%200%200%201%207.06-.87l.47.28a2%202%200%200%200%201.42.25L21%204%27%2F%3E%3Cpath%20d%3D%27m21%203%201%2011h-2%27%2F%3E%3Cpath%20d%3D%27M3%203%202%2014l6.5%206.5a1%201%200%201%200%203-3%27%2F%3E%3Cpath%20d%3D%27M3%204h8%27%2F%3E%3C%2Fsvg%3E");
  --ic-clock:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpolyline%20points%3D%2712%207%2012%2012%2015%2014%27%2F%3E%3C%2Fsvg%3E");
  --ic-suitcase:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%277%27%20width%3D%2718%27%20height%3D%2713%27%20rx%3D%272%27%2F%3E%3Cpath%20d%3D%27M8%207V5a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v2%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2711%27%20x2%3D%2712%27%20y2%3D%2716%27%2F%3E%3C%2Fsvg%3E");
  --ic-trophy:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M7%204h10v5a5%205%200%200%201-10%200V4z%27%2F%3E%3Cpath%20d%3D%27M5%204H3v2a3%203%200%200%200%203%203%27%2F%3E%3Cpath%20d%3D%27M19%204h2v2a3%203%200%200%201-3%203%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2714%27%20x2%3D%2712%27%20y2%3D%2718%27%2F%3E%3Cpath%20d%3D%27M8%2021h8%27%2F%3E%3Cpath%20d%3D%27M10%2018h4v3h-4z%27%2F%3E%3C%2Fsvg%3E");
  --ic-mic:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%279%27%20y%3D%272%27%20width%3D%276%27%20height%3D%2712%27%20rx%3D%273%27%2F%3E%3Cpath%20d%3D%27M5%2010a7%207%200%200%200%2014%200%27%2F%3E%3Cline%20x1%3D%2712%27%20y1%3D%2719%27%20x2%3D%2712%27%20y2%3D%2722%27%2F%3E%3C%2Fsvg%3E");
  --ic-graduation:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2010%2012%205%202%2010l10%205%2010-5z%27%2F%3E%3Cpath%20d%3D%27M6%2012v5c0%201%202.7%203%206%203s6-2%206-3v-5%27%2F%3E%3C%2Fsvg%3E");
  --ic-mosque:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%202s4%202%204%205c0%202-4%203-4%203s-4-1-4-3c0-3%204-5%204-5z%27%2F%3E%3Cpath%20d%3D%27M5%2021V12a7%207%200%200%201%2014%200v9%27%2F%3E%3Cpath%20d%3D%27M3%2021h18%27%2F%3E%3Cpath%20d%3D%27M9%2021v-4a3%203%200%200%201%206%200v4%27%2F%3E%3C%2Fsvg%3E");
  --ic-senior:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M5%2021v-1a7%207%200%200%201%2014%200v1%27%2F%3E%3C%2Fsvg%3E");
  --ic-gem:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M6%203h12l4%206-10%2012L2%209l4-6z%27%2F%3E%3Cpath%20d%3D%27M11%203%208%209l4%2012%204-12-3-6%27%2F%3E%3Cline%20x1%3D%272%27%20y1%3D%279%27%20x2%3D%2722%27%20y2%3D%279%27%2F%3E%3C%2Fsvg%3E");
  --ic-van:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%2017V7h11l4%204h3v6%27%2F%3E%3Cpath%20d%3D%27M3%2017h2m6%200h4%27%2F%3E%3Ccircle%20cx%3D%277.5%27%20cy%3D%2717.5%27%20r%3D%271.5%27%2F%3E%3Ccircle%20cx%3D%2717.5%27%20cy%3D%2717.5%27%20r%3D%271.5%27%2F%3E%3C%2Fsvg%3E");
  --ic-hotel:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%274%27%20y%3D%273%27%20width%3D%2716%27%20height%3D%2718%27%20rx%3D%271%27%2F%3E%3Cpath%20d%3D%27M8%207h.01M12%207h.01M16%207h.01M8%2011h.01M12%2011h.01M16%2011h.01%27%2F%3E%3Cpath%20d%3D%27M10%2021v-4h4v4%27%2F%3E%3C%2Fsvg%3E");
  --ic-globe:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cline%20x1%3D%273%27%20y1%3D%2712%27%20x2%3D%2721%27%20y2%3D%2712%27%2F%3E%3Cpath%20d%3D%27M12%203a14%2014%200%200%201%200%2018%2014%2014%200%200%201%200-18z%27%2F%3E%3C%2Fsvg%3E");
  --ic-gear:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%273%27%2F%3E%3Cpath%20d%3D%27M19.4%2013a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%201%201-2.83%202.83l-.06-.06a1.65%201.65%200%200%200-2.82%201.17V21a2%202%200%200%201-4%200v-.09A1.65%201.65%200%200%200%207%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%201%201-2.83-2.83l.06-.06A1.65%201.65%200%200%200%202.6%2011H3a2%202%200%200%201%200-4h-.09A1.65%201.65%200%200%200%204.6%205.18l-.06-.06a2%202%200%201%201%202.83-2.83l.06.06A1.65%201.65%200%200%200%2011%202.6V3a2%202%200%200%201%204%200v-.09a1.65%201.65%200%200%200%202.82-1.17l.06-.06a2%202%200%201%201%202.83%202.83l-.06.06A1.65%201.65%200%200%200%2021.4%2011H21a2%202%200%200%201%200%204h-.09z%27%2F%3E%3C%2Fsvg%3E");
  --ic-compass:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpolygon%20points%3D%2716%208%2010%2010%208%2016%2014%2014%2016%208%27%2F%3E%3C%2Fsvg%3E");
  --ic-pin:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%2021s-7-7.5-7-12a7%207%200%200%201%2014%200c0%204.5-7%2012-7%2012z%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%279%27%20r%3D%272.5%27%2F%3E%3C%2Fsvg%3E");
  --ic-mail:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%275%27%20width%3D%2718%27%20height%3D%2714%27%20rx%3D%272%27%2F%3E%3Cpath%20d%3D%27m3%207%209%206%209-6%27%2F%3E%3C%2Fsvg%3E");
  --ic-line:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M21%2011.5a8.38%208.38%200%200%201-.9%203.8%208.5%208.5%200%200%201-7.6%204.7%208.38%208.38%200%200%201-3.8-.9L3%2021l1.9-5.7a8.38%208.38%200%200%201-.9-3.8%208.5%208.5%200%200%201%204.7-7.6%208.38%208.38%200%200%201%203.8-.9h.5a8.48%208.48%200%200%201%208%208z%27%2F%3E%3C%2Fsvg%3E");
  --ic-phone:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.36%201.9.7%202.81a2%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45c.91.34%201.85.57%202.81.7A2%202%200%200%201%2022%2016.92z%27%2F%3E%3C%2Fsvg%3E");
  --ic-building:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%2021h18%27%2F%3E%3Cpath%20d%3D%27M5%2021V5a2%202%200%200%201%202-2h6a2%202%200%200%201%202%202v16%27%2F%3E%3Cpath%20d%3D%27M15%2021V9h2a2%202%200%200%201%202%202v10%27%2F%3E%3Cpath%20d%3D%27M8%207h2M8%2011h2M8%2015h2%27%2F%3E%3C%2Fsvg%3E");
  --ic-users:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M16%2021v-2a4%204%200%200%200-4-4H6a4%204%200%200%200-4%204v2%27%2F%3E%3Ccircle%20cx%3D%279%27%20cy%3D%277%27%20r%3D%274%27%2F%3E%3Cpath%20d%3D%27M22%2021v-2a4%204%200%200%200-3-3.87%27%2F%3E%3Cpath%20d%3D%27M16%203.13a4%204%200%200%201%200%207.75%27%2F%3E%3C%2Fsvg%3E");
  --ic-flag:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%274%27%20y1%3D%2721%27%20x2%3D%274%27%20y2%3D%274%27%2F%3E%3Cpath%20d%3D%27M4%204h13l-2.5%204L17%2012H4%27%2F%3E%3C%2Fsvg%3E");
  --ic-check:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2720%206%209%2017%204%2012%27%2F%3E%3C%2Fsvg%3E");
  --ic-star:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27black%27%3E%3Cpolygon%20points%3D%2712%202%2015.09%208.26%2022%209.27%2017%2014.14%2018.18%2021.02%2012%2017.77%205.82%2021.02%207%2014.14%202%209.27%208.91%208.26%2012%202%27%2F%3E%3C%2Fsvg%3E");
  --ic-facebook:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27black%27%3E%3Cpath%20d%3D%27M14%209h3V5h-3a4%204%200%200%200-4%204v2H7v4h3v6h4v-6h3l1-4h-4V9a1%201%200%200%201%201-1z%27%2F%3E%3C%2Fsvg%3E");
  --ic-instagram:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%273%27%20width%3D%2718%27%20height%3D%2718%27%20rx%3D%275%27%2F%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%274%27%2F%3E%3Ccircle%20cx%3D%2717.5%27%20cy%3D%276.5%27%20r%3D%271.2%27%2F%3E%3C%2Fsvg%3E");
}
.icon{display:inline-block;width:1em;height:1em;flex:none;background-color:currentColor;vertical-align:-0.125em;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-image:var(--i);mask-image:var(--i)}
.icon-wa{--i:var(--ic-wa)}
.icon-search{--i:var(--ic-search)}
.icon-map{--i:var(--ic-map)}
.icon-shield{--i:var(--ic-shield)}
.icon-handshake{--i:var(--ic-handshake)}
.icon-clock{--i:var(--ic-clock)}
.icon-suitcase{--i:var(--ic-suitcase)}
.icon-trophy{--i:var(--ic-trophy)}
.icon-mic{--i:var(--ic-mic)}
.icon-graduation{--i:var(--ic-graduation)}
.icon-mosque{--i:var(--ic-mosque)}
.icon-senior{--i:var(--ic-senior)}
.icon-gem{--i:var(--ic-gem)}
.icon-van{--i:var(--ic-van)}
.icon-hotel{--i:var(--ic-hotel)}
.icon-globe{--i:var(--ic-globe)}
.icon-gear{--i:var(--ic-gear)}
.icon-compass{--i:var(--ic-compass)}
.icon-pin{--i:var(--ic-pin)}
.icon-mail{--i:var(--ic-mail)}
.icon-line{--i:var(--ic-line)}
.icon-phone{--i:var(--ic-phone)}
.icon-building{--i:var(--ic-building)}
.icon-users{--i:var(--ic-users)}
.icon-flag{--i:var(--ic-flag)}
.icon-check{--i:var(--ic-check)}
.icon-star{--i:var(--ic-star)}
.icon-facebook{--i:var(--ic-facebook)}
.icon-instagram{--i:var(--ic-instagram)}

/* ---------- Featured flyer (Chiang Mai day trip) ---------- */
.flyer {
  display: flex; flex-wrap: wrap; gap: 56px;
  align-items: center; justify-content: center;
}
.flyer__img {
  width: 100%; max-width: 470px; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
  transition: transform var(--t);
}
.flyer__img:hover { transform: rotate(0) scale(1.02); }
.flyer__content { flex: 1; min-width: 300px; max-width: 540px; }
.flyer__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2; margin: 0 0 12px;
}
.flyer__title b { color: var(--teal); }
.flyer__lead { color: var(--muted); margin: 0 0 24px; }
.flyer__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.flyer__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 500; color: var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}
.flyer__list li:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.flyer__list li .tick {
  flex: none; display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  font-size: 0.85rem;
}
.flyer__inc {
  background: var(--teal-tint);
  border-radius: var(--radius);
  padding: 18px 20px; margin: 0 0 26px;
}
.flyer__inc-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); margin: 0 0 12px;
}
.flyer__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.flyer__chips span {
  background: var(--white); color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px; font-size: 0.85rem; font-weight: 500;
}

/* ---------- Image lightbox ---------- */
.zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 15, 30, .9); padding: 24px;
  opacity: 0; visibility: hidden; cursor: zoom-out;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 95vw; max-height: 92vh; width: auto; height: auto;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: scale(.96); transition: transform .25s ease; cursor: default;
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .15); color: #fff;
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .3); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox img { transition: none; }
}
