/* ━━━━━━ TOKENS ━━━━━━ */
:root {
  --sky: #3aaee0;
  --sky-dark: #1a86c4;
  --sky-xlight: #eaf6fd;
  --green: #5cb85c;
  --green-dark: #3d9a3d;
  --navy: #0d2d50;
  --navy-light: #163d65;
  --ink: #0d1b2a;
  --ink-soft: #2c3e52;
  --ink-muted: #7a8fa6;
  --cream: #f7f9fc;
  --sand: #f0ede6;
  --white: #ffffff;
  --star: #f5a623;
  --gold: #d4a017;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(13, 29, 50, .08);
  --shadow-md: 0 8px 40px rgba(13, 29, 50, .13);
  --shadow-hover: 0 20px 60px rgba(13, 29, 50, .18);
  --trans: .22s ease;
}

/* ━━━━━━ RESET ━━━━━━ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

/* ── BTN GLOBAL ── */
.btn-sky {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(58, 174, 224, .28);
}

.btn-sky:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 174, 224, .38);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--sky);
  color: var(--sky);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 28px;
  border-radius: 50px;
}

.btn-outline:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR — TOP BAR + MAIN NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Top bar */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 901;
  background: #39aee0;
  padding: 7px 0;
  transition: transform var(--trans);
}

#topbar.hide {
  transform: translateY(-100%);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(255, 255, 255, .7);
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left a,
.topbar-right a {
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans);
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--sky);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right .soc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  transition: background var(--trans);
}

.topbar-right .soc:hover {
  background: var(--sky);
}

@media(max-width:767px) {
  #topbar {
    display: none;
  }
}

/* Main navbar */
#navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 900;
  background: #ffffff;
  transition: background var(--trans), box-shadow var(--trans), top var(--trans), padding var(--trans);
  padding: 18px 0;
}

#navbar.scrolled {
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(15, 25, 35, .10);
  padding: 12px 0;
}

@media(max-width:767px) {
  #navbar {
    top: 0;
  }
}

.nb-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nb-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--ink);
  white-space: nowrap;
  margin-right: 8px;
}

#navbar.scrolled .nb-brand {
  color: var(--ink);
}

.nb-brand span {
  color: var(--sky);
}

.nb-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: 1px;
}

.nb-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;
}

.nb-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: color var(--trans), background var(--trans);
}

.nb-links a:hover,
.nb-links a.active {
  color: var(--sky);
  background: var(--sky-xlight);
}

#navbar.scrolled .nb-links a {
  color: var(--ink-soft);
}

#navbar.scrolled .nb-links a:hover,
#navbar.scrolled .nb-links a.active {
  color: var(--sky);
  background: var(--sky-xlight);
}

.nb-cta {
  background: var(--sky);
  color: var(--white) !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--trans), transform var(--trans);
  margin-left: 4px;
}

.nb-cta:hover {
  background: var(--sky-dark);
  transform: translateY(-1px);
}

.nb-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  margin-left: auto;
}

#navbar.scrolled .nb-toggle {
  color: var(--ink);
}

/* hide desktop links + CTA on mobile, show hamburger */
@media(max-width:991px) {
  .nb-links {
    display: none;
  }

  .nb-cta.nb-desktop-cta {
    display: none;
  }

  .nb-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── RIGHT OFFCANVAS DRAWER ── */
.nb-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--white);
  z-index: 1050;
  flex-direction: column;
  padding: 72px 24px 32px;
  gap: 6px;
  box-shadow: -8px 0 48px rgba(15, 25, 35, .18);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow-y: auto;
}

.nb-mobile.open {
  transform: translateX(0);
}

.nb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1049;
  background: rgba(15, 25, 35, .45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .32s ease;
}

.nb-backdrop.open {
  display: block;
  opacity: 1;
}

.nb-mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), color var(--trans);
}

.nb-mobile-close:hover {
  background: var(--sky-xlight);
  color: var(--sky);
}

.nb-mobile-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.nb-mobile-logo span {
  color: var(--sky);
}

.nb-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), color var(--trans);
}

.nb-mobile a:hover,
.nb-mobile a.active {
  background: var(--sky-xlight);
  color: var(--sky);
}

.nb-mobile .nb-cta {
  margin: 16px 0 0;
  display: block;
  text-align: center;
  color: var(--white) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE SYSTEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec {
  padding: 88px 0;
}

@media(max-width:767px) {
  .sec {
    padding: 56px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

.sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: .97rem;
  color: var(--ink-muted);
  line-height: 1.78;
  max-width: 580px;
}

.badge-pill {
  display: inline-block;
  background: var(--sky-xlight);
  color: var(--sky-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.btn-sky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  border: none;
  cursor: pointer;
}

.btn-sky:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75, 189, 232, .35);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #d8dfe4;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: var(--sky-xlight);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}

.reveal.v {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s, transform .6s;
}

.reveal-l.v {
  opacity: 1;
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE HOME — SLIDER HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 960px;
  overflow: hidden;

}

/* SLIDES */
.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .9s cubic-bezier(.7, 0, .3, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease-out;
  transform: scale(1.04);
  overflow: hidden;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* dark overlay so text is readable */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(8, 20, 42, .82) 0%,
      rgba(8, 22, 48, .60) 40%,
      rgba(5, 18, 38, .30) 100%);
}

/* ── HERO CONTENT OVERLAY ── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
}

.hero-text {
  max-width: 660px;
}

/* animate-in class added by JS after slide settles */
.hero-anim .hero-tag {
  animation: hUp .55s .10s both;
}

.hero-anim .hero-h1 {
  animation: hUp .60s .22s both;
}

.hero-anim .hero-p {
  animation: hUp .55s .38s both;
}

.hero-anim .hero-cta-row {
  animation: hUp .55s .52s both;
}

@keyframes hUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* "Hey Explorer!" */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sky);
  margin-bottom: 14px;
}

.hero-tag svg {
  flex-shrink: 0;
}

/* big headline */
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  color: var(--white);
  line-height: 1.04;
  font-weight: 700;
  margin-bottom: 16px;
}

/* sub paragraph */
.hero-p {
  font-size: .97rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: 28px;
  font-weight: 300;
}

/* CTA row: pill button + dashed connector + price chip — inline */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

/* green pill button */
.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--sky);
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 5px 5px 5px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(58, 174, 224, .35);
}

.btn-hero-pill:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 174, 224, .45);
  color: var(--white);
}

.btn-hero-pill .pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  margin-left: 14px;
  transition: background var(--trans);
}

.btn-hero-pill:hover .pill-icon {
  background: rgba(255, 255, 255, .4);
}

/* dashed curved connector between button and chip */
.hero-connector {
  position: relative;
  width: 90px;
  height: 54px;
  flex-shrink: 0;
}

.hero-connector svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* green dot on left end (sticks to button) */
.hero-connector::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(58, 174, 224, .25);
  z-index: 2;
}

/* price chip */
.hero-price-chip {
  background: var(--white);
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: 0 8px 36px rgba(15, 25, 35, .2);
  text-align: center;
  min-width: 150px;
  flex-shrink: 0;
}

.hpc-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.hpc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  color: var(--sky);
  line-height: 1.1;
  margin: 3px 0;
}

.hpc-unit {
  font-size: .8rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* LEFT / RIGHT ARROW BUTTONS — flush to viewport edges */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .32);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* SLIDE DOTS */
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background var(--trans), width var(--trans);
}

.hero-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* bottom wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 6;
  pointer-events: none;
}

@media(max-width:767px) {
  .hero-content {
    padding-bottom: 100px;
    align-items: flex-end;
  }

  .hero-h1 {
    font-size: 2.6rem;
  }

  .hero-connector,
  .hero-price-chip {
    display: none;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: .78rem;
  }

  .hero-arrow.prev {
    left: 10px;
  }

  .hero-arrow.next {
    right: 10px;
  }
}

/* ── SEARCH BAR STRIP ── */
.search-strip {
  background: var(--white);
  box-shadow: 0 4px 32px rgba(15, 25, 35, .08);
  padding: 0;
  position: relative;
  z-index: 10;
}

.search-bar {
  display: flex;
  align-items: stretch;
  border: 2px solid #e4e8eb;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin: -1px;
  transition: border-color var(--trans);
}

.search-bar:focus-within {
  border-color: var(--sky);
}

.sb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-right: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background var(--trans);
  min-width: 0;
}

.sb-field:hover {
  background: var(--cream);
}

.sb-field:last-child {
  border: none;
}

.sb-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.sb-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sb-val.ph {
  color: #bcc8d0;
}

.sb-btn {
  background: var(--sky);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 0 28px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background var(--trans);
  border-radius: 0;
  flex-shrink: 0;
}

.sb-btn:hover {
  background: var(--sky-dark);
}

@media(max-width:767px) {
  .search-bar {
    flex-direction: column;
  }

  .sb-field {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .sb-btn {
    padding: 14px 20px;
    justify-content: center;
  }
}

/* ── WHY SECTION ── */
.why-sec {
  background: var(--white);
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #edf1f5;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(58, 174, 224, .3);
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-xlight), #d0edf8);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(58, 174, 224, .15);
}

.feat-card h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.feat-card p {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── TOUR CARDS ── */
.tours-sec {
  background: var(--white);
}

.tour-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
  background: var(--white);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.tour-card:hover .tc-img img {
  transform: scale(1.06);
}

.tc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.tc-badge.pop {
  background: var(--sky);
  color: var(--white);
}

.tc-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 25, 35, .75);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: right;
}

.tc-price-tag .from {
  font-size: .62rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tc-price-tag .amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--sky);
}

.tc-price-tag .unit {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
}

.tc-body {
  padding: 22px 20px 20px;
}

.tc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.tc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--ink-muted);
}

.tc-meta-item i {
  color: var(--sky);
  font-size: .8rem;
}

.tc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tc-places {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tc-place-tag {
  background: var(--sand);
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f4f4f4;
}

.tc-driver {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-driver-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
}

.tc-driver-name {
  font-size: .78rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.tc-driver-role {
  font-size: .68rem;
  color: var(--ink-muted);
}

.tc-book-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans), color var(--trans);
}

.tc-book-link:hover {
  gap: 9px;
  color: var(--sky-dark);
}

/* ── PKG SPLIT (Aventour style) ── */
/* ═══════════════════════════════════════
   PKG-SPLIT — Aventour style
   Dark bg-image zone (pentagon clip) +
   white zone below, cards floating across
═══════════════════════════════════════ */

/* ── wrapper ── */
.pkg-split {
  position: relative;
  background: var(--white);
}

/* ── FLOATING SHAPE ── */
.pkg-split-shape {
  width: 100px;
  height: 198px;
  position: absolute;
  bottom: 30px;
  right: 140px;
  z-index: 4;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media(max-width:991px) {
  .pkg-split-shape {
    display: none;
  }
}

/* ── DARK TOP ZONE — categories style ── */
.pkg-split-dark {
  position: relative;
  padding: 110px 0 220px;
  overflow: hidden;
}

/* bg photo layer — clip-path pentagon */
.pkg-split-dark .bg-layer {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('images/golden-triangle-mekong.jpg');
  z-index: 0;
}

/* dark overlay — sits inside bg-layer as ::before */
.pkg-split-dark .bg-layer::before {
  content: '';
  background-color: #39aee0;
  opacity: .75;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* text header */
.pkg-split-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

.pkg-split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--sky);
  margin-bottom: 10px;
}

.pkg-split-eyebrow svg {
  flex-shrink: 0;
}

.pkg-split-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 10px;
}

.pkg-split-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  max-width: 480px;
}

.pkg-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 8px;
  transition: gap var(--trans), color var(--trans);
}

.pkg-view-all:hover {
  gap: 13px;
  color: var(--sky);
}

.pkg-view-all i {
  font-size: .8rem;
}

/* ── CARDS ROW — pulled up over dark zone ── */
.pkg-split-cards {
  position: relative;
  z-index: 10;
  margin-top: -195px;
  padding-bottom: 72px;
}

/* ── CARDS SWIPER ── */
.pkg-swiper {
  overflow: hidden !important;
  padding: 0 0 48px !important;
}

.pkg-swiper .swiper-slide {
  height: auto;
}

/* pagination bullets */
.pkg-swiper .swiper-pagination {
  bottom: 8px;
}

.pkg-swiper .swiper-pagination-bullet {
  background: rgba(13, 45, 80, .25);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.pkg-swiper .swiper-pagination-bullet-active {
  background: var(--sky);
  width: 24px;
  border-radius: 4px;
}

/* nav arrows */
.pkg-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.pkg-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans);
  flex-shrink: 0;
}

.pkg-nav-btn:hover {
  background: var(--sky);
  border-color: var(--sky);
}

/* ── CARD ── */
.psc {
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(15, 25, 35, .18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.psc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 25, 35, .24);
}

/* title inside card — dark bg top section */

.psc-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #123053;
  background: #ffffff;
  padding: 18px 18px 16px;
  letter-spacing: .01em;
  text-align: center;
}

/* active/popular card gets border */
.psc.psc-active {
  outline: 2px solid var(--white);
  outline-offset: -2px;
}

/* image area — สูงตามสัดส่วนรูปจริง ไม่ crop */
.psc-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.psc-bg {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .55s ease;
}

.psc:hover .psc-bg {
  transform: scale(1.07);
}

/* popular badge */
.psc-pop-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(75, 189, 232, .35);
}

/* active arrow (sky blue circle) */
.psc-arrow-sky {
  background: var(--sky) !important;
  border-color: var(--sky) !important;
  color: var(--white) !important;
}

/* info strip */
.psc-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 18px;
  background: #f0f4f8;
}

.psc-info-left {}

.psc-stops {
  font-size: .76rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.psc-price {
  font-size: .84rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.psc-price span {
  color: var(--sky);
  font-weight: 700;
  font-size: .94rem;
}

.psc-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8edf1;
  border: 1.5px solid #d4dce4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: .78rem;
  flex-shrink: 0;
  transition: background var(--trans), border-color var(--trans), color var(--trans), transform var(--trans);
  text-decoration: none;
}

.psc:hover .psc-arrow,
.psc.active-card .psc-arrow {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  transform: translateX(3px);
}

/* ── DESTINATIONS ── */
.dest-sec {
  background: #f0f4f8;
  position: relative;
  overflow: hidden;
}

/* ── DEST SHAPE BOX ── */
.dest-sec .shape-box {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.dest-sec .shape-box .shape-1 {
  background-repeat: no-repeat;
  background-size: contain;
  width: 375px;
  height: 305px;
  position: absolute;
  top: -120px;
  left: 0;
}

.dest-sec .shape-box .shape-2 {
  background-repeat: no-repeat;
  background-size: contain;
  width: 92px;
  height: 54px;
  position: absolute;
  top: 120px;
  right: 345px;
}

.dest-sec .container {
  position: relative;
  z-index: 1;
}

/* ── FLOAT BOB X ── */
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float-bob-x {
  0% {
    transform: translateX(0px);
  }

  25% {
    transform: translateX(-14px);
  }

  50% {
    transform: translateX(0px);
  }

  75% {
    transform: translateX(14px);
  }

  100% {
    transform: translateX(0px);
  }
}

@media(max-width:767px) {
  .dest-sec .shape-box .shape-1 {
    width: 200px;
    height: 160px;
  }

  .dest-sec .shape-box .shape-2 {
    display: none;
  }
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.dest-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dest-item-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}

.dest-item:hover .dest-item-bg {
  transform: scale(1.07);
}

.dest-item:first-child {
  grid-row: span 2;
  min-height: 400px;
}

.dest-item:first-child .dest-item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-item:not(:first-child) .dest-item-bg {
  aspect-ratio: 4/3;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 25, 35, .65) 0%, transparent 55%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px 14px;
}

.dest-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.dest-sub {
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
}

@media(max-width:767px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-item:first-child {
    grid-row: span 1;
  }
}

/* ── TESTIMONIALS ── */
.testi-sec {
  background: var(--white);
}

.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #ebebeb;
  height: 100%;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars i {
  color: var(--star);
  font-size: .85rem;
}

.testi-text {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}

.testi-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.testi-from {
  font-size: .75rem;
  color: var(--ink-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE TOURS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.inner-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0f2233, #0e4a6e);
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(75, 189, 232, .15) 0%, transparent 70%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--sky);
}

.inner-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 480px;
  font-weight: 300;
}

.inner-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

/* filter tabs */
.pkg-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0 0;
}

.pf-tab {
  padding: 9px 22px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid #e0e5e9;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--trans);
}

.pf-tab:hover,
.pf-tab.active {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--white);
}

/* detail pkg card */
.dpkg {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eeeeee;
  background: var(--white);
  transition: box-shadow var(--trans), transform var(--trans);
  height: 100%;
}

.dpkg:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.dpkg.featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 2px rgba(75, 189, 232, .2);
}

.dpkg-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.dpkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dpkg:hover .dpkg-img img {
  transform: scale(1.05);
}

.dpkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--sky);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.dpkg-head {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dpkg-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.dpkg-price {
  text-align: right;
  flex-shrink: 0;
}

.dpkg-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--sky);
  line-height: 1;
}

.dpkg-unit {
  font-size: .72rem;
  color: var(--ink-muted);
}

.dpkg-body {
  padding: 16px 24px 24px;
}

.dpkg-desc {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.dpkg-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stop-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.stop-row:last-child {
  border: none;
}

.stop-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-xlight);
  color: var(--sky);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.stop-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.stop-desc {
  font-size: .76rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.dpkg-footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE SERVICE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-card {
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  padding: 32px;
  background: var(--white);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky-xlight);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.svc-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin: 0;
}

.svc-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--sky-xlight);
  color: var(--sky-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* price table */
.price-sec {
  background: var(--cream);
}

.ptable {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.pt-head {
  background: linear-gradient(135deg, #0f2233, #0e4a6e);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.pt-head h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
}

.pt-head small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
}

.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #f5f5f5;
  flex-wrap: wrap;
  gap: 12px;
  transition: background var(--trans);
}

.pt-row:hover {
  background: var(--cream);
}

.pt-row:last-child {
  border: none;
}

.pt-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

.pt-desc {
  font-size: .78rem;
  color: var(--ink-muted);
  margin-top: 3px;
}

.pt-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--sky);
  white-space: nowrap;
}

.pt-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--ink-muted);
}

/* steps */
.steps-sec {
  background: var(--white);
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #ebebeb;
  height: 100%;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid #eee;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}

.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.ct-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.ct-icon.tel {
  background: #e8f4fd;
  color: var(--sky);
}

.ct-icon.wa {
  background: #e8f8ee;
  color: #25D366;
}

.ct-icon.line {
  background: #e8fae8;
  color: #00B900;
}

.ct-icon.loc {
  background: #fdf6e8;
  color: var(--gold);
}

.ct-card h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.ct-card p {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  transition: gap var(--trans), color var(--trans);
}

.ct-link:hover {
  gap: 10px;
  color: var(--sky-dark);
}

.ct-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 28px 80px rgba(15, 25, 35, .14);
}

.ct-hero-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.ct-hero-card p {
  font-size: .88rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.wa-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  transition: background var(--trans), transform var(--trans);
  border: none;
  cursor: pointer;
}

.wa-big:hover {
  background: #1da355;
  transform: translateY(-2px);
}

/* FAQ */
.faq-sec {
  background: var(--cream);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #eeeeee;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  transition: background var(--trans);
}

.faq-q:hover {
  background: var(--cream);
}

.faq-q i {
  color: var(--sky);
  transition: transform var(--trans);
  flex-shrink: 0;
}

.faq-q.open i {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.78;
}

.faq-a.open {
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-sec {
  background: var(--cream);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.gf-btn {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid #d8dfe4;
  background: var(--white);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all var(--trans);
}

.gf-btn:hover,
.gf-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}

/* Masonry grid */
.gallery-grid {
  columns: 4 220px;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 29, 50, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(13, 29, 50, .45);
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity var(--trans), transform var(--trans);
}

.gallery-item:hover .gallery-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

.gallery-item[data-cat].hidden {
  display: none;
}

/* Load more */
.gallery-more {
  text-align: center;
  margin-top: 28px;
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 12, 22, .92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lb-overlay.open {
  display: flex;
}

.lb-box {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-box img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
  display: block;
  width: auto;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
  backdrop-filter: blur(8px);
}

.lb-close:hover {
  background: rgba(255, 255, 255, .28);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
  backdrop-filter: blur(8px);
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, .28);
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 25, 35, .7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .82rem;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
}

@media(max-width:767px) {
  .gallery-grid {
    columns: 2 160px;
  }

  .lb-prev {
    left: 6px;
  }

  .lb-next {
    right: 6px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BANNER & FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-banner {
  background: linear-gradient(74deg, #0e2d50 0%, #1a86c4 55%, #1f7bb5 100%);
  padding: 72px 0 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 68%);
  top: -200px;
  left: -140px;
  pointer-events: none;
}

.cta-banner:before {
  content: "";
  background-color: #39aee0;
  opacity: .7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10) 0%, transparent 68%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

/* wavy top edge */
.cta-banner-wave {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.cta-banner-wave svg {
  display: block;
  width: 100%;
}

/* pill badge above title */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
}

.cta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: .9;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .08);
  }
}

.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.18;
}

.cta-banner p {
  color: rgba(255, 255, 255, .80);
  font-size: .97rem;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.76;
}

/* ── CONTACT CARDS STRIP ── */
.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-contact-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}

.cta-contact-card:hover {
  background: rgba(255, 255, 255, .26);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
  color: var(--white);
}

.cta-contact-card i {
  font-size: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-card .cc-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.cta-contact-card .cc-value {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1;
}

@media(max-width:576px) {
  .cta-contacts {
    gap: 10px;
  }

  .cta-contact-card {
    padding: 9px 16px;
    font-size: .82rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: #f0f4f8;
  padding: 48px 0 0;
}

.foot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

@media(max-width:767px) {
  .foot-cards {
    grid-template-columns: 1fr;
  }
}

.foot-card {
  background: #dfe6ef;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foot-card-text {}

.foot-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7f96;
  margin-bottom: 6px;
}

.foot-card-value {
  font-size: .97rem;
  font-weight: 600;
  color: #0d2d50;
}

.foot-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #39aee0;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.1rem;
  text-decoration: none !important;
  line-height: 1;
}

.foot-card-icon i {
  color: #ffffff !important;
}

/* bottom bar */
.foot-bottom {
  border-top: 1px solid rgba(13, 45, 80, .10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  font-size: .8rem;
  color: #7a8fa6;
}

.foot-copy span {
  color: var(--sky);
  font-weight: 600;
}

.foot-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #c5d0db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8fa6;
  font-size: .82rem;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}

.foot-soc:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: rgba(75, 189, 232, .08);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE RESPONSIVE — GLOBAL FIXES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── NAVBAR mobile tweaks ── */
@media(max-width:991px) {
  .nb-inner {
    gap: 0;
  }

  .nb-brand {
    font-size: 1.25rem;
  }
}

/* ── HERO mobile ── */
@media(max-width:575px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .hero-h1 {
    font-size: 2.1rem;
    line-height: 1.1;
  }

  .hero-tag {
    font-size: .9rem;
  }

  .hero-p {
    font-size: .88rem;
    max-width: 100%;
  }

  .hero-dots {
    bottom: 64px;
  }

  .btn-hero-pill {
    font-size: .84rem;
    padding: 5px 5px 5px 18px;
  }

  .btn-hero-pill .pill-icon {
    width: 34px;
    height: 34px;
    margin-left: 10px;
  }
}

/* ── SECTION PADDING mobile ── */
@media(max-width:575px) {
  .sec {
    padding: 44px 0;
  }

  .sec-title {
    font-size: 1.8rem;
  }
}

/* ── WHY / FEAT CARDS ── */
@media(max-width:575px) {
  .feat-card {
    padding: 24px 20px;
  }
}

/* ── PKG SPLIT dark zone ── */
@media(max-width:767px) {
  .pkg-split-dark {
    padding: 72px 0 160px;
  }

  .pkg-split-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* move nav arrows to left side on mobile */
  .pkg-split-header>div:last-child,
  .pkg-split-header-right {
    align-items: flex-start !important;
    flex-direction: row !important;
    justify-content: space-between;
    width: 100%;
  }

  .pkg-split-title {
    font-size: 1.6rem;
  }

  .pkg-split-cards {
    margin-top: -120px;
  }
}

@media(max-width:575px) {
  .pkg-split-dark {
    padding: 60px 0 140px;
  }

  .pkg-split-cards {
    margin-top: -100px;
    padding-bottom: 40px;
  }

  .pkg-swiper {
    padding: 0 0 40px !important;
  }
}

.pkg-split-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* ── DESTINATION GRID mobile ── */
@media(max-width:575px) {
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dest-item:first-child {
    grid-row: span 1;
    min-height: 0;
  }

  /* รูปออกตามขนาดจริง ไม่ crop บนมือถือ */
  .dest-item:first-child .dest-item-bg,
  .dest-item:not(:first-child) .dest-item-bg {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    min-height: 0;
  }

  .dest-name {
    font-size: 1rem;
  }
}

@media(min-width:576px) and (max-width:767px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dest-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 250px;
    min-height: 0;
  }

  .dest-item:first-child .dest-item-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

/* ── PACKAGE CARDS (psc) ── */
@media(max-width:575px) {
  .psc-name {
    font-size: 1rem;
    padding: 14px 14px 12px;
  }

  .psc-info {
    padding: 12px 14px 14px;
  }
}

/* ── INNER HERO (Tours / Service / Contact pages) ── */
@media(max-width:767px) {
  .inner-hero {
    padding: 100px 0 50px;
  }

  .inner-hero h1 {
    font-size: 1.8rem;
  }
}

/* ── FILTER TABS mobile ── */
@media(max-width:575px) {
  .pkg-filter {
    gap: 6px;
  }

  .pf-tab {
    padding: 8px 16px;
    font-size: .78rem;
  }

  .gallery-filter {
    gap: 6px;
  }

  .gf-btn {
    padding: 7px 14px;
    font-size: .74rem;
  }
}

/* ── DETAIL PKG CARD ── */
@media(max-width:575px) {
  .dpkg-head {
    flex-direction: column;
    gap: 8px;
  }

  .dpkg-price {
    text-align: left;
  }

  .dpkg-body {
    padding: 12px 18px 18px;
  }

  .dpkg-footer {
    flex-direction: column;
    gap: 10px;
  }

  .dpkg-footer .btn-sky,
  .dpkg-footer .btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ── PRICE TABLE ── */
@media(max-width:575px) {
  .pt-head {
    padding: 20px 18px;
  }

  .pt-row {
    padding: 16px 18px;
  }

  .pt-price {
    font-size: 1.3rem;
  }
}

/* ── STEP CARDS ── */
@media(max-width:575px) {
  .step-card {
    padding: 22px 18px;
  }
}

/* ── SERVICE CARDS ── */
@media(max-width:575px) {
  .svc-card {
    padding: 24px 20px;
  }
}

/* ── CONTACT PAGE cards ── */
@media(max-width:575px) {
  .ct-card {
    padding: 28px 20px;
  }

  .ct-hero-card {
    padding: 28px 20px;
  }

  .wa-big {
    font-size: .9rem;
    padding: 14px;
  }
}

/* ── FAQ ── */
@media(max-width:575px) {
  .faq-q {
    padding: 16px 18px;
    font-size: .88rem;
  }

  .faq-a {
    padding: 0 18px 16px;
  }
}

/* ── TESTIMONIALS ── */
@media(max-width:575px) {
  .testi-card {
    padding: 22px 18px;
  }

  .testi-text {
    font-size: .86rem;
  }
}

/* ── CTA BANNER ── */
@media(max-width:767px) {
  .cta-banner {
    padding: 52px 0 48px;
  }

  .cta-contacts {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-contact-card {
    justify-content: flex-start;
    border-radius: 14px;
    padding: 14px 18px;
  }
}

@media(max-width:575px) {
  .cta-banner h2 {
    font-size: 1.75rem;
  }

  .cta-banner p {
    font-size: .9rem;
  }
}

/* ── GALLERY ── */
@media(max-width:480px) {
  .gallery-grid {
    columns: 2 140px;
    column-gap: 8px;
  }

  .gallery-item {
    margin-bottom: 8px;
  }
}

/* ── FOOTER ── */
@media(max-width:575px) {
  .foot-cards {
    gap: 12px;
    margin-bottom: 24px;
  }

  .foot-card {
    padding: 18px 20px;
    border-radius: 12px;
  }

  .foot-card-value {
    font-size: .88rem;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0;
  }
}

/* ── LIGHTBOX mobile ── */
@media(max-width:575px) {
  .lb-box img {
    max-width: 96vw;
    max-height: 80vh;
  }

  .lb-prev {
    left: 4px;
    width: 40px;
    height: 40px;
  }

  .lb-next {
    right: 4px;
    width: 40px;
    height: 40px;
  }

  .lb-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .lb-caption {
    font-size: .76rem;
    bottom: 16px;
    max-width: 90vw;
    white-space: normal;
    text-align: center;
  }
}

/* ── PREVENT horizontal overflow on very small screens ── */
@media(max-width:575px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-text {
    max-width: 100%;
  }

  .sec-sub {
    font-size: .9rem;
  }

  /* stop any absolute decoratives from causing overflow */
  .shape-1,
  .shape-2,
  .pkg-split-shape {
    pointer-events: none;
  }

  .dest-sec {
    overflow: hidden;
  }
}

/* ── STICKY WhatsApp float button — mobile only ── */
@media(max-width:767px) {
  .wa-float {
    display: flex !important;
  }
}

.wa-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 1.55rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(58, 174, 224, .45);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(58, 174, 224, .55);
  color: #fff;
}


/* ========================================
   tours.css — MeDee Tour
   Part of: css/style.css (split)
   ======================================== */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE TOURS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.inner-hero {
  padding: 50px 0 60px;
  margin-top: 106px;
  background: linear-gradient(295deg, #39aee0, #246185f0);
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(75, 189, 232, .15) 0%, transparent 70%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
}

.inner-hero h1 em {
  font-style: italic;
  color: var(--sky);
}

.inner-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 480px;
  font-weight: 300;
}

.inner-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

@media(max-width:767px) {
  .inner-hero {
    margin-top: 62px;
    padding: 40px 0 50px;
  }

  .inner-hero h1 {
    font-size: 1.8rem;
  }
}

/* filter tabs */
.pkg-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 0 0;
}

.pf-tab {
  padding: 9px 22px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid #e0e5e9;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--trans);
}

.pf-tab:hover,
.pf-tab.active {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--white);
}

/* detail pkg card */
.dpkg {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eeeeee;
  background: var(--white);
  transition: box-shadow var(--trans), transform var(--trans);
  height: 100%;
}

.dpkg:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.dpkg.featured {
  border-color: var(--sky);
  box-shadow: 0 0 0 2px rgba(75, 189, 232, .2);
}

.dpkg-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.dpkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dpkg:hover .dpkg-img img {
  transform: scale(1.05);
}

.dpkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--sky);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

.dpkg-head {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dpkg-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.dpkg-price {
  text-align: right;
  flex-shrink: 0;
}

.dpkg-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--sky);
  line-height: 1;
}

.dpkg-unit {
  font-size: .72rem;
  color: var(--ink-muted);
}

.dpkg-body {
  padding: 16px 24px 24px;
}

.dpkg-desc {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

.dpkg-stops {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stop-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.stop-row:last-child {
  border: none;
}

.stop-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-xlight);
  color: var(--sky);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.stop-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.stop-desc {
  font-size: .76rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.dpkg-footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
}



/* ========================================
   tour-details.css — MeDee Tour
   ======================================== */

/* ── LAYOUT: content left + sticky sidebar right ── */
.td-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media(max-width:991px) {
  .td-layout {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO IMAGE BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}

.td-hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.td-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--sky);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(58, 174, 224, .4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTENT AREA (LEFT)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}

.td-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf1f5;
}

.td-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-muted);
}

.td-meta-item i {
  color: var(--sky);
  font-size: .9rem;
}

.td-meta-item strong {
  color: var(--ink);
  font-weight: 600;
}

.td-desc {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION BLOCK (used for itinerary, includes, etc.)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-section {
  margin-bottom: 40px;
}

.td-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.td-section-title i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sky-xlight);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ITINERARY TIMELINE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-timeline {
  position: relative;
  padding-left: 28px;
}

.td-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--sky-xlight));
  border-radius: 2px;
}

.td-stop {
  position: relative;
  margin-bottom: 28px;
}

.td-stop:last-child {
  margin-bottom: 0;
}

.td-stop::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-xlight);
  z-index: 1;
}

.td-stop-time {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 4px;
}

.td-stop-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 5px;
}

.td-stop-desc {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.td-stop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.td-stop-tag {
  background: var(--sand);
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 6px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INCLUDES / EXCLUDES LIST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.td-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.td-check-item .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.td-check-item.yes .icon {
  background: #e8f8ee;
  color: #25a244;
}

.td-check-item.no .icon {
  background: #fdf0f0;
  color: #e05555;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY BOOKING SIDEBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-sidebar {
  position: sticky;
  top: 130px;
  /* below fixed navbar */
}

.td-book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #edf1f5;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.td-book-head {
  background: linear-gradient(135deg, #0f2233, #0e4a6e);
  padding: 24px 28px;
}

.td-book-from {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 4px;
}

.td-book-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--sky);
  line-height: 1;
}

.td-book-price sup {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 2px;
}

.td-book-unit {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 4px;
}

.td-book-body {
  padding: 24px 28px;
}

/* info rows inside card */
.td-book-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.td-book-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

.td-book-info-row .label {
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.td-book-info-row .label i {
  color: var(--sky);
  font-size: .85rem;
}

.td-book-info-row .value {
  font-weight: 600;
  color: var(--ink);
}

/* book buttons */
.td-book-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 15px;
  border-radius: var(--radius-sm);
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  margin-bottom: 10px;
}

.td-book-btn-wa:hover {
  background: #1da355;
  transform: translateY(-2px);
  color: var(--white);
}

.td-book-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sky-xlight);
  color: var(--sky);
  font-size: .88rem;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--radius-sm);
  width: 100%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--trans), color var(--trans);
}

.td-book-btn-call:hover {
  background: var(--sky);
  color: var(--white);
}

.td-book-note {
  font-size: .75rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.td-book-note i {
  color: var(--sky);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OTHER TOURS (bottom strip)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.td-other-tours {
  background: var(--cream);
}

.td-other-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.td-other-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.td-other-img {
  position: relative;
}

.td-other-img img {
  width: 100%;
  height: auto;
  transition: transform .5s;
}

.td-other-card:hover .td-other-img img {
  transform: scale(1.06);
}

.td-other-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.td-other-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.td-other-price {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
  flex: 1;
}

.td-other-price span {
  color: var(--sky);
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:991px) {
  .td-sidebar {
    position: static;
    top: auto;
  }

  .td-book-card {
    margin-top: 0;
  }
}

@media(max-width:575px) {
  .td-hero-img {
    margin-bottom: 24px;
  }

  .td-title {
    font-size: 1.6rem;
  }

  .td-meta-row {
    gap: 14px;
  }

  .td-book-head {
    padding: 20px;
  }

  .td-book-body {
    padding: 20px;
  }

  .td-book-price {
    font-size: 2rem;
  }
}



/* ========================================
   service.css — MeDee Tour
   Part of: css/style.css (split)
   ======================================== */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ██ PAGE SERVICE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-card {
  border-radius: var(--radius);
  border: 1px solid #f0f0f0;
  padding: 32px;
  background: var(--white);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky-xlight);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.svc-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin: 0;
}

.svc-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--sky-xlight);
  color: var(--sky-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* price table */
.price-sec {
  background: var(--cream);
}

.ptable {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #eeeeee;
  overflow: hidden;
}

.pt-head {
  background: linear-gradient(135deg, #39aee0, #247eaa);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.pt-head h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
}

.pt-head small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
}

.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #f5f5f5;
  flex-wrap: wrap;
  gap: 12px;
  transition: background var(--trans);
}

.pt-row:hover {
  background: var(--cream);
}

.pt-row:last-child {
  border: none;
}

.pt-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

.pt-desc {
  font-size: .78rem;
  color: var(--ink-muted);
  margin-top: 3px;
}

.pt-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--sky);
  white-space: nowrap;
}

.pt-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--ink-muted);
}

/* steps */
.steps-sec {
  background: var(--white);
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #ebebeb;
  height: 100%;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}