/* =====================================================
   TIMELESS TRIPS — MASTER STYLESHEET v3
   Theme: Vibrant Teal-Gold Luxury
   Fonts: Cormorant Garamond + DM Sans
   ===================================================== */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  /* Brand colours — vibrant teal + warm gold */
  --teal:        #0d7377;
  --teal-lt:     #14a3a8;
  --teal-dk:     #085a5e;
  --teal-pale:   #e6f4f5;
  --teal-glass:  rgba(13,115,119,.08);

  --gold:        #d4952a;
  --gold-lt:     #e8ac44;
  --gold-dk:     #b07520;
  --gold-pale:   #fdf5e8;

  --accent:      #e85d26;   /* warm coral for urgency badges */

  --dark:        #0f1f20;
  --dark-2:      #1a3033;
  --ink:         #1e3435;
  --muted:       #5a7475;
  --warm-bg:     #f5fafa;
  --warm-bg-2:   #ecf5f5;
  --white:       #ffffff;

  --wa-green:    #25d366;
  --wa-dark:     #128c4e;

  --border:      rgba(13,115,119,.12);
  --border-md:   rgba(13,115,119,.2);
  --shadow-sm:   0 2px 8px rgba(13,115,119,.08);
  --shadow:      0 4px 24px rgba(13,115,119,.1);
  --shadow-lg:   0 12px 48px rgba(13,115,119,.16);

  --radius:      8px;
  --radius-lg:   16px;
  --tr:          .26s ease;
  --max-w:       1220px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img     { display: block; max-width: 100%; height: auto; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
address { font-style: normal; }
button  { font-family: inherit; }

::selection { background: var(--teal); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm-bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ══ LAYOUT ══ */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5.5rem 0; }
.bg-warm     { background: var(--warm-bg); }
.bg-warm-2   { background: var(--warm-bg-2); }
.bg-dark     { background: var(--dark); color: var(--white); }

/* ══ SECTION HEADS ══ */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head.left { text-align: left; }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-label { color: var(--gold-lt); }
.section-head.light .section-desc  { color: rgba(255,255,255,.62); }

.section-label {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .6rem;
}
.section-label::before, .section-label::after {
  content: ''; display: inline-block; width: 20px; height: 1.5px;
  background: currentColor; opacity: .45; border-radius: 2px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  margin-top: .9rem; font-size: .95rem; color: var(--muted);
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.8;
}
.section-head.left .section-desc { margin-left: 0; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.8rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: all var(--tr); white-space: nowrap; user-select: none;
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }

.btn-primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); box-shadow: 0 4px 20px rgba(13,115,119,.45); transform: translateY(-1px); }

.btn-gold     { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); box-shadow: 0 4px 20px rgba(212,149,42,.45); transform: translateY(-1px); }

.btn-outline  { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }

.btn-outline-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: var(--white); }

.btn-wa  { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); box-shadow: 0 4px 20px rgba(37,211,102,.45); transform: translateY(-1px); }

.btn-light { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-light:hover { background: var(--teal-pale); }

.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-2); }

.btn-sm  { padding: .48rem 1.1rem; font-size: .8rem; }
.btn-lg  { padding: .95rem 2.25rem; font-size: .95rem; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════
   HEADER / NAV  — FIXED DROPDOWN BUG
   Uses JS-toggled .open class instead of
   pure :hover so gap doesn't kill state
══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(13,115,119,.08);
  transition: box-shadow var(--tr), border-color var(--tr);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(13,115,119,.14);
  border-bottom-color: rgba(13,115,119,.15);
}

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

.logo { flex-shrink: 0; }
.logo img { height: 44px; width: auto; }

.main-nav  { display: flex; align-items: center; gap: .5rem; }
.nav-list  { display: flex; align-items: center; gap: 0; }

.nav-list > li > a {
  display: flex; align-items: center; gap: .3rem;
  padding: .48rem .82rem; font-size: .84rem; font-weight: 500;
  color: var(--ink); border-radius: var(--radius);
  transition: background var(--tr), color var(--tr); white-space: nowrap;
  position: relative;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--teal-glass);
  color: var(--teal);
}
/* active underline */
.nav-list > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: .82rem; right: .82rem;
  height: 2px; background: var(--teal); border-radius: 2px;
}

.nav-list > li > a svg { opacity: .4; transition: transform var(--tr), opacity var(--tr); flex-shrink: 0; }
.has-dropdown.open > a svg,
.has-dropdown:focus-within > a svg { transform: rotate(180deg); opacity: .9; }

/* CTA nav items */
/* Nav CTA group — Book Now + Call Expert */
.nav-cta-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-left: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(13,115,119,.25);
  flex-shrink: 0;
  height: 36px;
}

.nav-book-btn {
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: .4rem !important; padding: .54rem 1.2rem !important;
  background: var(--gold) !important; color: var(--white) !important;
  font-size: .82rem !important; font-weight: 700 !important;
  letter-spacing: .03em !important; white-space: nowrap !important;
  border: none !important; border-radius: 0 !important;
  cursor: pointer !important; transition: background var(--tr) !important;
  text-decoration: none !important;
}
.nav-book-btn:hover {
  background: var(--gold-dk) !important;
  transform: none !important;
}

/* Divider between Book Now & Call Expert */
.nav-cta-group .nav-divider {
  display: block;
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

.nav-call-btn {
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: .45rem !important; padding: .54rem 1.1rem !important;
  background: var(--teal) !important; color: var(--white) !important;
  font-size: .82rem !important; font-weight: 600 !important;
  white-space: nowrap !important; border: none !important;
  border-radius: 0 !important; cursor: pointer !important;
  text-decoration: none !important; transition: background var(--tr) !important;
  position: relative !important;
}
.nav-call-btn:hover { background: var(--teal-dk) !important; }

/* Animated green ring on call button — signals availability */
.nav-call-btn::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: liveRing 1.8s infinite;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
}
@keyframes liveRing {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ── DROPDOWN — JS controlled via .open class ── */
.has-dropdown { position: relative; }

/* invisible bridge to prevent gap from closing dropdown */
.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 14px;
  background: transparent;
  display: none;
}
.has-dropdown.open::after { display: block; }

.dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1.5px solid rgba(13,115,119,.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 56px rgba(13,115,119,.18), 0 4px 16px rgba(0,0,0,.08);
  min-width: 220px; padding: .65rem 0; z-index: 9999;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-dropdown.open > .dropdown,
.has-dropdown:focus-within > .dropdown {
  visibility: visible; opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pip */
.dropdown::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px;
  background: var(--white);
  border-left: 1.5px solid rgba(13,115,119,.15);
  border-top:  1.5px solid rgba(13,115,119,.15);
  transform: translateX(-50%) rotate(45deg);
  top: -7px;
}

.dropdown li { border-bottom: 1px solid rgba(13,115,119,.06); }
.dropdown li:last-child { border-bottom: none; }

.dropdown li a {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1.3rem; font-size: .84rem; color: var(--ink); font-weight: 500;
  transition: background var(--tr), color var(--tr), padding-left var(--tr);
}
.dropdown li a::before {
  content: '→'; font-size: .72rem; color: var(--teal);
  opacity: 0; transform: translateX(-4px);
  transition: opacity var(--tr), transform var(--tr);
  flex-shrink: 0;
}
.dropdown li a:hover {
  background: var(--teal-glass); color: var(--teal); padding-left: 1.6rem;
}
.dropdown li a:hover::before { opacity: 1; transform: translateX(0); }

/* ── MOBILE TOGGLE ── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: .45rem; border-radius: var(--radius); transition: background var(--tr);
}
.nav-toggle:hover { background: var(--teal-glass); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--teal); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.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; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 72px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg,
    rgba(13,115,119,.35) 0%,
    rgba(15,31,32,.55) 55%,
    rgba(15,31,32,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); padding: 0 1.5rem; max-width: 840px;
  animation: heroUp .9s ease both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.5rem;
  animation: heroUp .9s .15s ease both;
}
.hero-tag::before, .hero-tag::after {
  content: ''; display: inline-block; width: 28px; height: 1.5px;
  background: var(--gold-lt); opacity: .6; border-radius: 1px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 300; line-height: 1.06; margin-bottom: 1.25rem;
  animation: heroUp .9s .25s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-lt); font-weight: 300; }
.hero-sub {
  font-size: clamp(.92rem, 1.8vw, 1.12rem); color: rgba(255,255,255,.82);
  margin-bottom: 2.75rem; max-width: 540px; margin-left: auto; margin-right: auto;
  animation: heroUp .9s .35s ease both;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: heroUp .9s .45s ease both; }
.hero-scroll-hint {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; z-index: 2; animation: heroUp .9s .8s ease both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--teal-lt), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.4); }
}

/* ══ STATS STRIP ══ */
.intro-strip { background: var(--dark); }
.intro-grid  { display: grid; grid-template-columns: repeat(4,1fr); }
.intro-stat {
  padding: 2.1rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--tr);
}
.intro-stat:last-child { border-right: none; }
.intro-stat:hover { background: rgba(13,115,119,.12); }
.stat-num {
  display: block; font-family: 'Cormorant Garamond',serif;
  font-size: 2.8rem; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: .3rem;
}
.stat-label {
  display: block; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ══ ABOUT BLURB ══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap > img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-img-wrap::before {
  content: ''; position: absolute;
  top: -1rem; left: -1rem; right: 2rem; bottom: 2rem;
  border: 2px solid var(--teal); border-radius: var(--radius-lg);
  opacity: .2; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -1.75rem; right: -1.75rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  color: var(--white);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  font-size: .72rem; font-weight: 700; line-height: 1.35;
  letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(13,115,119,.4);
}
.about-badge span { font-size: 1.5rem; line-height: 1; margin-bottom: .25rem; }
.about-text .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; font-size: .94rem; line-height: 1.8; }
.about-pillars { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.about-pillars li {
  display: flex; align-items: center; gap: .85rem; font-size: .9rem; color: var(--ink);
  padding: .7rem 1rem; background: var(--teal-glass); border-radius: var(--radius);
  border-left: 3px solid var(--teal); transition: box-shadow var(--tr);
}
.about-pillars li:hover { box-shadow: var(--shadow-sm); }
.pillar-icon { color: var(--teal); flex-shrink: 0; font-weight: 700; }

/* ══ PACKAGE CARDS ══ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2rem; }
.pkg-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(13,115,119,.3); }

.pkg-img-link { position: relative; display: block; overflow: hidden; flex-shrink: 0; }
.pkg-img-link img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .65s ease; display: block; }
.pkg-card:hover .pkg-img-link img { transform: scale(1.07); }

.pkg-badge {
  position: absolute; top: .85rem; left: .85rem;
  font-size: .67rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .8rem;
  border-radius: 20px; box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.pkg-badge          { background: var(--gold); color: var(--white); }
.pkg-badge--romance { background: #e05c7a; color: var(--white); }
.pkg-badge--luxury  { background: linear-gradient(135deg,#8b6914,#c9a020); color: var(--white); }
.pkg-badge--nature  { background: #2e8b57; color: var(--white); }
.pkg-badge--popular { background: var(--teal); color: var(--white); }

.pkg-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pkg-meta { display: flex; gap: .85rem; font-size: .73rem; color: var(--muted); margin-bottom: .55rem; flex-wrap: wrap; }
.pkg-title { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 500; line-height: 1.2; margin-bottom: .5rem; color: var(--dark); }
.pkg-title a { transition: color var(--tr); }
.pkg-title a:hover { color: var(--teal); }
.pkg-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.1rem; }
.pkg-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1.5px solid var(--border); }
.pkg-price  { display: flex; flex-direction: column; }
.price-from { font-size: .68rem; color: #aaa; letter-spacing: .06em; text-transform: uppercase; }
.price-val  { font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; font-weight: 600; color: var(--teal); line-height: 1.1; }
.price-per  { font-size: .7rem; font-weight: 400; color: var(--muted); }
.pkg-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.section-cta-wrap { display: flex; gap: 1rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }

/* ══ CATEGORY CARDS ══ */
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cat-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.75rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); background: var(--white);
  position: relative; overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); cursor: pointer;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(13,115,119,.35); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 2.25rem; margin-bottom: .9rem; line-height: 1; }
.cat-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; font-weight: 500; margin-bottom: .5rem; color: var(--dark); }
.cat-card p  { font-size: .84rem; color: var(--muted); line-height: 1.65; flex: 1; }
.cat-arrow {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; color: var(--teal);
  text-transform: uppercase; transition: gap var(--tr);
}
.cat-card:hover .cat-arrow { gap: .8rem; }

/* ══ WHY SECTION ══ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  transition: background var(--tr), border-color var(--tr);
}
.why-card:hover { background: rgba(13,115,119,.12); border-color: rgba(20,163,168,.25); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 1.35rem;
  background: rgba(13,115,119,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-lt); transition: background var(--tr);
}
.why-card:hover .why-icon { background: rgba(13,115,119,.3); }
.why-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 500; color: var(--white); margin-bottom: .6rem; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ══ GALLERY ══ */
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gal-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; position: relative;
}
.gal-item img { width: 100%; transition: transform .55s ease; display: block; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item::after {
  content: '⊕'; position: absolute; inset: 0;
  background: rgba(13,115,119,.25); display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem; color: var(--white); opacity: 0;
  transition: opacity var(--tr);
}
.gal-item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(10,25,26,.94); z-index: 9999;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; animation: lbIn .22s ease; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(0,0,0,.7); }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 2.5rem; color: rgba(255,255,255,.65);
  cursor: pointer; background: none; border: none; line-height: 1;
  transition: color var(--tr), transform var(--tr);
}
.lb-close:hover { color: var(--white); transform: rotate(90deg) scale(1.1); }

/* ══ TESTIMONIALS ══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow); border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  transition: box-shadow var(--tr), transform var(--tr);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testi-quote {
  font-family: 'Cormorant Garamond',serif; font-size: 1.08rem; font-style: italic;
  color: var(--ink); line-height: 1.75; flex: 1; position: relative; padding-left: 1.5rem;
}
.testi-quote::before {
  content: '\201C'; position: absolute; left: 0; top: -.4rem;
  font-size: 3.2rem; color: var(--teal); font-family: 'Cormorant Garamond',serif;
  line-height: 1; opacity: .35;
}
.testi-author {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1.5px solid var(--border);
}
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--teal); flex-shrink: 0; }
.testi-author strong { display: block; font-size: .9rem; font-weight: 600; color: var(--dark); }
.testi-author span   { font-size: .78rem; color: var(--muted); display: block; margin-top: .1rem; }

/* ══ HOW IT WORKS ══ */
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.how-step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--teal-glass); border: 2px solid var(--teal);
  font-family: 'Cormorant Garamond',serif; font-size: 1.5rem;
  font-weight: 400; color: var(--teal); margin: 0 auto 1.25rem;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.how-step:hover .step-num { background: var(--teal); color: var(--white); }
.how-step h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; font-weight: 500; margin-bottom: .5rem; color: var(--dark); }
.how-step p  { font-size: .84rem; color: var(--muted); line-height: 1.7; }

/* ══ CTA BANNER ══ */
.cta-banner { position: relative; overflow: hidden; padding: 7rem 1.5rem; text-align: center; color: var(--white); }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(13,115,119,.6) 0%, rgba(15,31,32,.75) 100%); }
.cta-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner-content h2 {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(2rem,4.5vw,3.25rem); font-weight: 300; margin: .75rem 0 1.1rem; line-height: 1.12;
}
.cta-banner-content h2 em { font-style: italic; color: var(--gold-lt); }
.cta-banner-content p { color: rgba(255,255,255,.75); margin-bottom: 2.25rem; font-size: .95rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══ DEST HERO (inner pages) ══ */
.dest-hero {
  margin-top: 72px; text-align: center;
  padding: 5.5rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.dest-hero::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
  opacity: .4;
}
.dest-hero h1 {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; color: var(--white); margin: .5rem 0 .8rem;
}
.dest-hero h1 em { font-style: italic; color: var(--gold-lt); }
.dest-hero .section-label { color: var(--gold-lt); }
.dest-hero p { color: rgba(255,255,255,.62); max-width: 560px; margin: 0 auto; font-size: .95rem; line-height: 1.7; }

.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .77rem; color: rgba(255,255,255,.4); justify-content: center; margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,.22); }

/* ══ PKG DETAIL PAGE ══ */
.pkg-detail-hero {
  margin-top: 72px; background: var(--dark); color: var(--white);
  padding: 4.5rem 1.5rem 3.25rem; position: relative; overflow: hidden;
}
.pkg-detail-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,115,119,.2) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-detail-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
  opacity: .5;
}
.pkg-detail-hero .breadcrumb { justify-content: flex-start; margin-bottom: 1.5rem; }
.pkg-detail-hero h1 {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(1.9rem,3.8vw,3rem); font-weight: 300; max-width: 820px; line-height: 1.15; margin-bottom: 1rem;
}
.pkg-detail-hero h1 em { font-style: italic; color: var(--gold-lt); }
.pkg-meta-bar { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.7); }
.pkg-meta-bar span {
  display: flex; align-items: center; gap: .4rem;
  padding: .32rem .9rem; background: rgba(13,115,119,.2);
  border-radius: 20px; border: 1px solid rgba(20,163,168,.3);
}

.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 360px);
  gap: 3rem;
  padding: 3.5rem 0 5rem;
  align-items: start;
}

.pkg-gallery-thumbs {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem;
  margin-bottom: 2.5rem; border-radius: var(--radius-lg); overflow: hidden;
}
.pkg-gallery-thumbs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: zoom-in; transition: transform .4s ease; display: block; }
.pkg-gallery-thumbs img:first-child { grid-column: span 3; aspect-ratio: 16/7; }
.pkg-gallery-thumbs img:hover { transform: scale(1.03); }

.incl-excl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.incl-box {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--warm-bg); border: 1.5px solid var(--border);
}
.incl-box h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1.5px solid var(--border); }
.incl-box ul { display: flex; flex-direction: column; gap: .55rem; }
.incl-box li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: var(--muted); line-height: 1.5; }

.itinerary-list { display: flex; flex-direction: column; gap: 1.25rem; }
.itinerary-day {
  padding: 1.6rem 1.6rem 1.6rem 2rem; border-left: 4px solid var(--teal);
  background: var(--warm-bg); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.itinerary-day:hover { box-shadow: var(--shadow); transform: translateX(4px); border-color: var(--gold); }
.day-label { font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: .35rem; }
.itinerary-day h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 500; color: var(--dark); margin-bottom: .2rem; }
.itinerary-day .sub { font-size: .73rem; color: var(--gold-dk); margin-bottom: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.itinerary-day p { font-size: .87rem; color: var(--muted); line-height: 1.75; }

/* ══ BOOKING SIDEBAR ══ */
.booking-sidebar {
  position: sticky;
  top: 92px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  min-width: 0;
  width: 100%;
}

/* Price banner at top of sidebar */
.sidebar-top {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: none;
}
.sidebar-top .price-from {
  font-size: .67rem; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: .2rem;
}
.sidebar-top .price-val {
  font-family: 'Cormorant Garamond',serif; font-size: 2.5rem;
  font-weight: 300; color: var(--white); line-height: 1.1; display: block;
}
.sidebar-top .price-per  { font-size: .75rem; color: rgba(255,255,255,.6); }
.sidebar-top .price-note {
  display: block; font-size: .72rem; color: rgba(255,255,255,.5);
  margin-top: .4rem; font-style: italic;
}

/* Body — all padding lives here */
.sidebar-body {
  padding: 1.4rem 1.5rem 1.5rem;
}

/* When sidebar has NO .sidebar-top (old structure) fall back gracefully */
.booking-sidebar > .pkg-price {
  padding: 1.5rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--white);
}
.booking-sidebar > .pkg-price .price-from {
  color: rgba(255,255,255,.65); font-size: .67rem;
  text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: .2rem;
}
.booking-sidebar > .pkg-price .price-val {
  font-family: 'Cormorant Garamond',serif; font-size: 2.4rem;
  font-weight: 300; color: var(--white); line-height: 1.1; display: block;
}
.booking-sidebar > .pkg-price .price-per { color: rgba(255,255,255,.6); }
.booking-sidebar > .pkg-price span[style] { color: rgba(255,255,255,.5) !important; }

/* Form wrapper inside sidebar */
.booking-sidebar > .booking-form {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* ── CONTACT FORM (sidebar & standalone) — FIXED STYLING ── */
.booking-form label,
.contact-form label,
.form-field label {
  display: block; font-size: .74rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--teal-dk); margin-bottom: .38rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 2px solid rgba(13,115,119,.18);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; color: var(--ink);
  background: var(--white);
  margin-bottom: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance: none; appearance: none;
  outline: none;
}
.booking-form input:hover,
.contact-form input:hover,
.form-field input:hover { border-color: rgba(13,115,119,.35); }

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13,115,119,.12), 0 2px 8px rgba(13,115,119,.1);
  background: #fbfffe;
}

.booking-form textarea,
.contact-form textarea,
.form-field textarea { resize: vertical; min-height: 90px; }

.booking-form .btn { width: 100%; margin-top: .5rem; margin-bottom: 0; }
/* Remove bottom margin from last input before button */
.booking-form input:last-of-type,
.booking-form select:last-of-type { margin-bottom: .5rem; }

/* Select arrow */
.booking-form select,
.contact-form select,
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d7377' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.5rem; cursor: pointer;
}

.sidebar-divider {
  display: flex; align-items: center; gap: .75rem; margin: 1rem 0;
  font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em;
}
.sidebar-divider::before, .sidebar-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.sidebar-features {
  padding: 1.1rem 1.5rem 1.4rem;
  border-top: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: .75rem;
  background: var(--warm-bg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.sidebar-feature { display: flex; align-items: flex-start; gap: .75rem; font-size: .82rem; color: var(--muted); }
.sidebar-feature strong { display: block; color: var(--dark); font-weight: 600; font-size: .84rem; margin-bottom: .1rem; }

/* ══ FOOTER ══ */
.site-footer {
  background: linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255,255,255,.65); padding: 5rem 0 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-dk), var(--teal), var(--gold), var(--teal), var(--teal-dk));
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-brand img { margin-bottom: 1.1rem; filter: brightness(0) invert(1); opacity: .88; height: 38px; width: auto; display: block; }
.footer-brand p { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 240px; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.footer-socials a:hover { border-color: var(--teal-lt); color: var(--teal-lt); background: rgba(13,115,119,.2); }
.footer-col h4 { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-lt); margin-bottom: 1.35rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .84rem; color: rgba(255,255,255,.45); transition: color var(--tr), padding-left var(--tr); }
.footer-col ul a:hover { color: var(--gold-lt); padding-left: .4rem; }
.footer-col address p { font-size: .84rem; line-height: 1.8; margin-bottom: .6rem; color: rgba(255,255,255,.45); }
.footer-col address a { color: rgba(255,255,255,.45); transition: color var(--tr); }
.footer-col address a:hover { color: var(--teal-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.4rem 0; text-align: center; }
.footer-bottom p { font-size: .77rem; color: rgba(255,255,255,.28); }

/* ══ WHATSAPP FLOAT ══ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9998;
  width: 62px; height: 62px; background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.5); transition: transform var(--tr), box-shadow var(--tr);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.65); }
.wa-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--wa-green); opacity: 0; animation: waPing 2.5s 2s infinite;
}
@keyframes waPing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }

/* ══ CONTACT PAGE ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 5.5rem 0 6rem; align-items: start; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem; border-radius: var(--radius); margin-bottom: .6rem;
  transition: background var(--tr), box-shadow var(--tr);
  border: 1.5px solid transparent;
}
.contact-info-item:hover { background: var(--teal-glass); box-shadow: var(--shadow-sm); border-color: var(--border); }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-info-item strong { display: block; font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: .2rem; }
.contact-info-item p, .contact-info-item a { font-size: .87rem; color: var(--muted); transition: color var(--tr); }
.contact-info-item a:hover { color: var(--teal); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══ LEGAL PAGES ══ */
.legal-hero { margin-top: 72px; background: var(--warm-bg-2); padding: 4rem 1.5rem 3rem; border-bottom: 2px solid var(--border); }
.legal-hero h1 { font-family: 'Cormorant Garamond',serif; font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--dark); margin: .5rem 0 .4rem; }
.legal-hero p { font-size: .85rem; color: var(--muted); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.legal-content h2 {
  font-family: 'Cormorant Garamond',serif; font-size: 1.55rem; font-weight: 400;
  color: var(--dark); margin: 2.5rem 0 .85rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.legal-content p  { font-size: .92rem; color: var(--muted); line-height: 1.85; margin-bottom: .9rem; }
.legal-content ul { padding-left: 1.4rem; list-style: disc; margin-bottom: 1rem; }
.legal-content li { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-bottom: .5rem; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--teal); transition: color var(--tr); }
.legal-content a:hover { color: var(--teal-dk); }
.legal-highlight { background: var(--teal-glass); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: .9rem; color: var(--ink); }

/* ══ VALUES (About) ══ */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.value-card {
  text-align: center; padding: 2.25rem 1.5rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(13,115,119,.4); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1; }
.value-card h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; margin-bottom: .5rem; color: var(--dark); }
.value-card p  { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ══ REVEAL ANIMATIONS ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ TOAST ══ */
.toast {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: .9rem 1.5rem .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .87rem;
  box-shadow: var(--shadow-lg);
  z-index: 9990;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  max-width: 320px;
  pointer-events: none;
  border-left: 4px solid var(--teal);
  line-height: 1.45;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width:1100px) {
  .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:2rem; }
  .footer-brand { grid-column: span 3; }
  .pkg-detail-grid { grid-template-columns:1fr 320px; }
  .categories-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-img-wrap::before { display:none; }
  .about-badge { bottom:-1rem; right:-.5rem; width:96px; height:96px; font-size:.68rem; }
  .testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .pkg-detail-grid { grid-template-columns:1fr; gap:2rem; }
  .booking-sidebar { position:static; max-width:520px; margin:0 auto; width:100%; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .incl-excl-grid { grid-template-columns:1fr; }
  .how-steps { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  /* ─── Mobile Nav ─── */
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: 0 0 1.5rem;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 32px rgba(13,115,119,.18);
    z-index: 999;
  }
  .main-nav.open { display: flex; animation: slideDown .22s ease; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-list { flex-direction: column; width: 100%; gap: 0; padding: .5rem 0; }
  .nav-list > li { width: 100%; border-bottom: 1px solid rgba(13,115,119,.07); }
  .nav-list > li:last-child { border-bottom: none; }
  .nav-list > li > a {
    width: 100%; padding: .9rem 1.25rem; border-radius: 0;
    font-size: .92rem; font-weight: 500; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a.active { background: var(--teal-glass); color: var(--teal); border-radius: 0; }

  /* Mobile dropdown */
  .dropdown {
    position: static !important; visibility: visible !important;
    opacity: 1 !important; pointer-events: auto !important;
    transform: none !important; box-shadow: none !important;
    border: none !important; border-radius: 0 !important;
    background: rgba(13,115,119,.04) !important;
    border-top: 1px solid rgba(13,115,119,.08) !important;
    margin: 0 !important; padding: .25rem 0 !important;
    display: none; animation: none !important; transition: none !important; width: 100%;
  }
  .dropdown::before { display: none !important; }
  .has-dropdown.open > .dropdown { display: block; }
  .dropdown li a { padding: .75rem 1.75rem; font-size: .88rem; color: var(--ink); border-radius: 0; }
  .dropdown li a::before { display: none; }
  .dropdown li a:hover { background: rgba(13,115,119,.1); padding-left: 2rem; }
  .has-dropdown.open > a svg { transform: rotate(180deg) !important; opacity: .9; }

  /* CTA group stacked */
  .nav-cta-group {
    flex-direction: column; border-radius: 0; margin: 0;
    overflow: hidden; box-shadow: none; height: auto; width: 100%;
    border-top: 2px solid rgba(13,115,119,.12);
  }
  .nav-book-btn {
    border-radius: 0 !important; padding: 1rem 1.25rem !important;
    font-size: .9rem !important; justify-content: center !important;
    width: 100% !important; height: auto !important;
    border-bottom: 1px solid rgba(255,255,255,.2) !important;
  }
  .nav-call-btn {
    border-radius: 0 !important; padding: 1rem 1.25rem !important;
    font-size: .9rem !important; justify-content: center !important;
    width: 100% !important; height: auto !important;
  }
  .nav-divider { display: none !important; }
  .nav-call-btn::before { display: none !important; }

  /* Layout */
  .section-pad { padding: 3.5rem 0; }
  .intro-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .pkg-gallery-thumbs { grid-template-columns: repeat(2,1fr); }
  .pkg-gallery-thumbs img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
  .hero { min-height: 540px; }
  .hero-title { font-size: 2.25rem; }
  .cta-banner { padding: 5rem 1.25rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .incl-excl-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* ── Package detail page fixes @ 768px ── */
  .pkg-detail-hero {
    padding: 3rem 1.25rem 2.25rem;
    margin-top: 64px;
  }
  .pkg-detail-hero h1 { font-size: clamp(1.75rem,4.5vw,2.4rem); }
  .pkg-meta-bar { gap: .5rem; }
  .pkg-meta-bar span { font-size: .78rem; padding: .3rem .8rem; }
  .pkg-detail-grid { padding: 2rem 0 3.5rem; gap: 2rem; }
  .pkg-gallery-thumbs { grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 2rem; }
  .pkg-gallery-thumbs img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
  .itinerary-day { padding: 1.25rem 1.25rem 1.25rem 1.5rem; }
  .incl-excl-grid { gap: 1rem; margin: 1.75rem 0; }
  .incl-box { padding: 1.25rem; }
  .sidebar-top .price-val { font-size: 2.1rem; }
  .sidebar-body { padding: 1.25rem; }
  .sidebar-features { padding: 1rem 1.25rem 1.25rem; }
}

/* ── Dropdown Home Link ── */
.dropdown-home-link {
  font-weight: 700 !important;
  color: var(--teal) !important;
  border-bottom: 1.5px solid rgba(13,115,119,.15) !important;
  background: rgba(13,115,119,.05) !important;
}
.dropdown-home-link:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding-left: 1.3rem !important;
}

/* ── Call Direct Button (sidebar) ── */
.btn-call-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .82rem 1rem;
  background: var(--teal-glass);
  border: 2px solid var(--border-md);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-call-direct:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-call-direct svg { flex-shrink: 0; }

/* ── Fix nav-cta-group alignment ── */
.nav-cta-group { align-items: stretch; }

@media (max-width:520px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:span 1; }
  .gallery-masonry { columns:1; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .packages-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .how-steps { grid-template-columns:1fr; }
  .intro-grid { grid-template-columns:repeat(2,1fr); }
  .stat-num { font-size:2rem; }
  .dest-hero { padding:4rem 1.25rem 3rem; }
  .testimonials-grid { grid-template-columns:1fr; }

  /* ── Package detail hero ── */
  .pkg-detail-hero {
    padding: 2.5rem 1rem 2rem;
    margin-top: 60px;
  }
  .pkg-detail-hero h1 {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: .75rem;
  }
  .pkg-meta-bar {
    gap: .4rem;
  }
  .pkg-meta-bar span {
    font-size: .74rem;
    padding: .28rem .7rem;
  }
  .breadcrumb {
    font-size: .72rem;
    gap: .35rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  /* ── Package detail grid ── */
  .pkg-detail-grid {
    padding: 1.75rem 0 3rem;
    gap: 1.75rem;
  }

  /* ── Gallery ── */
  .pkg-gallery-thumbs {
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    margin-bottom: 1.75rem;
    border-radius: 8px;
  }
  .pkg-gallery-thumbs img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  .pkg-gallery-thumbs img {
    aspect-ratio: 4/3;
    border-radius: 4px;
  }

  /* ── Inclusions / exclusions ── */
  .incl-excl-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .incl-box {
    padding: 1.1rem;
  }
  .incl-box h3 {
    font-size: 1.05rem;
    margin-bottom: .75rem;
    padding-bottom: .6rem;
  }
  .incl-box li {
    font-size: .83rem;
    gap: .45rem;
  }

  /* ── Itinerary ── */
  .itinerary-day {
    padding: 1.1rem 1rem 1.1rem 1.25rem;
    border-radius: 0 8px 8px 0;
  }
  .itinerary-day h3 {
    font-size: 1.1rem;
  }
  .itinerary-day p {
    font-size: .84rem;
    line-height: 1.65;
  }
  .day-label {
    font-size: .63rem;
  }

  /* ── Booking sidebar ── */
  .booking-sidebar {
    border-radius: 10px;
  }
  .sidebar-top {
    padding: 1.1rem 1rem;
    border-radius: 10px 10px 0 0;
  }
  .sidebar-top .price-val {
    font-size: 2rem;
  }
  .sidebar-body {
    padding: 1rem;
  }
  .booking-form input,
  .booking-form select,
  .sidebar-body input,
  .sidebar-body select {
    padding: .72rem .85rem;
    font-size: .88rem;
  }
  .sidebar-features {
    padding: .9rem 1rem 1rem;
    gap: .65rem;
  }
  .sidebar-feature {
    font-size: .8rem;
    gap: .55rem;
  }
  .sidebar-divider {
    font-size: .74rem;
    margin: .75rem 0;
  }
  .btn-call-direct {
    font-size: .84rem;
    padding: .72rem .85rem;
  }

  /* ── Hotel table ── */
  table {
    font-size: .78rem;
  }
  table th, table td {
    padding: .6rem .7rem;
  }
}

/* ══ Package Filter Bar (international page) ══ */
.pkg-filter-bar {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.pkg-filter-btn {
  padding: .42rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.pkg-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}
.pkg-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.pkg-card.filtered-out { display: none; }

/* ══ Enquiry Form (global) ══ */
.enquiry-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: .35rem;
  letter-spacing: .02em;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,149,42,.12);
}
.enquiry-form input[readonly] {
  background: var(--warm-bg);
  cursor: default;
  color: var(--muted);
}
.enquiry-form .btn-full {
  width: 100%;
}

@media print { .site-header,.wa-float,.hero-scroll-hint,.cta-banner { display:none !important; } }
