/* ============================================================
   OFFTRACK TRAVEL — Design System
   ============================================================ */

/* === TOKENS === */
:root {
  --orange:    #E8906B;
  --orange-dk: #D4764F;
  --teal:      #6DB5A0;
  --teal-dk:   #4E9C87;
  --yellow:    #F5C842;
  --purple:    #9B8EC4;
  --cream:     #FBF7F0;
  --cream-dk:  #F2EBE0;
  --sage:      #C8DA9E;
  --text:      #2D2926;
  --text-md:   #5A534E;
  --text-lt:   #9A938E;
  --white:     #FFFFFF;
  --ocean:     #C2E4F5;
  --card-bg:   #FFFFFF;
  --shadow:    0 4px 24px rgba(45, 41, 38, 0.09);
  --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.14);
  --radius:    16px;
  --radius-lg: 24px;
  --nav-h:     68px;
  --font:      'Nunito', system-ui, -apple-system, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.hidden { display: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 144, 107, 0.12);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.92;
}
.logo-plane {
  font-size: 22px;
  display: inline-block;
  animation: planeBob 3s ease-in-out infinite;
}
@keyframes planeBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-3px) rotate(5deg); }
}
.logo-word {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-word strong { color: var(--orange); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-md);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--orange); background: rgba(232, 144, 107, 0.08); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--cream-dk);
  border-radius: 999px;
  padding: 4px 10px;
}
.lang-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-lt);
  padding: 2px 6px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active {
  color: var(--orange);
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.lang-sep { color: var(--text-lt); font-size: 13px; }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--cream-dk);
  background: var(--cream);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-drawer a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-md);
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-drawer a:hover { background: var(--cream-dk); }
.mobile-lang { display: flex; align-items: center; gap: 6px; padding: 4px 0; }
.mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 144, 107, 0.4);
}
.btn-primary.btn-lg { font-size: 16px; padding: 14px 32px; }
.btn-arrow { font-size: 18px; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--white); }
.section-sub { font-size: 16px; color: var(--text-md); }
.section-header.light .section-sub { color: rgba(255,255,255,0.8); }

.section-badge {
  display: inline-block;
  background: rgba(232, 144, 107, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-badge.inv {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ============================================================
   HERO / MAP SECTION
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 40px;
  background: linear-gradient(160deg, #FBF7F0 0%, #F0EAD8 100%);
  overflow: hidden;
}

.hero-text {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 28px;
}
.hero-text h1 {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -1px;
}
.hero-text p {
  margin-top: 10px;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-md);
  font-weight: 500;
}

/* Map wrapper */
.map-wrap {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Floating CSS clouds */
.cloud {
  position: absolute;
  font-size: 32px;
  color: white;
  opacity: 0.75;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
  pointer-events: none;
  animation: cloudFloat linear infinite;
  z-index: 2;
}
.c1 { top: 8%;  left: -40px; font-size: 42px; animation-duration: 28s; animation-delay: 0s; }
.c2 { top: 18%; left: -60px; font-size: 28px; animation-duration: 22s; animation-delay: -8s; }
.c3 { top: 5%;  left: -50px; font-size: 36px; animation-duration: 34s; animation-delay: -14s; }
.c4 { top: 28%; left: -55px; font-size: 24px; animation-duration: 26s; animation-delay: -4s; }
@keyframes cloudFloat {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 120px)); }
}

/* SVG world map */
.world-svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  cursor: default;
}

/* SVG clouds animation */
.svg-cloud { animation: svgCloudDrift linear infinite; }
.sc1 { animation-duration: 30s; }
.sc2 { animation-duration: 38s; animation-delay: -12s; }
.sc3 { animation-duration: 24s; animation-delay: -6s; }
@keyframes svgCloudDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(1250px); }
}

/* Land masses */
.land { transition: filter 0.2s; }
.eurasia:hover { filter: brightness(1.04); }

/* Destination pins */
.dest-pin { cursor: pointer; }
.dest-pin .pin-bg {
  transition: transform 0.2s ease, filter 0.2s;
  transform-origin: center;
  transform-box: fill-box;
}
.dest-pin:hover .pin-bg {
  transform: scale(1.25);
  filter: brightness(1.08);
}
.dest-pin .pin-emoji { pointer-events: none; }
.dest-pin .pin-hit   { cursor: pointer; }

/* Animated plane */
.map-plane {
  animation: planeRoute 20s linear infinite;
}
@keyframes planeRoute {
  0%   { transform: translate(100px, 300px) rotate(-20deg); opacity: 0; }
  5%   { opacity: 1; }
  25%  { transform: translate(400px, 180px) rotate(-10deg); }
  50%  { transform: translate(700px, 250px) rotate(5deg); }
  75%  { transform: translate(980px, 200px) rotate(-5deg); }
  95%  { opacity: 1; }
  100% { transform: translate(1150px, 150px) rotate(-15deg); opacity: 0; }
}

/* Popup card */
.dest-popup {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px 18px;
  box-shadow: var(--shadow-lg);
  width: min(320px, 90vw);
  z-index: 10;
  animation: popupIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dest-popup[hidden] { display: none; }
@keyframes popupIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0)   scale(1); }
}
.popup-close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 18px;
  color: var(--text-lt);
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.popup-close:hover { color: var(--text); background: var(--cream-dk); }
.popup-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.popup-icon { font-size: 36px; flex-shrink: 0; }
.popup-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.popup-tagline {
  font-size: 13px;
  color: var(--text-md);
  margin-top: 4px;
  line-height: 1.4;
}
.popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.popup-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

.map-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-lt);
  font-weight: 500;
}

/* ============================================================
   BRAND SECTION
   ============================================================ */
.brand-section {
  padding: 96px 0;
  background: var(--cream);
}
.brand-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-hed {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.brand-body {
  font-size: 17px;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 32px;
}
.brand-body p { margin: 0; }

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.brand-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.brand-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.brand-card-top p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.market-section {}
.market-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 10px;
}
.market-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mtag {
  background: var(--cream);
  color: var(--text-md);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--cream-dk);
}

.brand-tagline-card {
  background: linear-gradient(135deg, var(--orange), #F0A07A);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.brand-tagline-card blockquote {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  font-style: normal;
  letter-spacing: -0.2px;
}

/* ============================================================
   TRAVEL TYPES
   ============================================================ */
.types-section {
  padding: 48px 0;
  background: var(--cream-dk);
}
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.type-card {
  background: var(--white);
  border-radius: 999px;
  padding: 12px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}
.type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.type-emoji {
  font-size: 20px;
  display: block;
  margin-bottom: 0;
}
.type-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}
.type-desc {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.55;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #3B7A68 0%, #2D5F50 100%);
}
.dest-section .section-header h2 { color: var(--white); }

.regions { display: flex; flex-direction: column; gap: 36px; margin-bottom: 48px; }

.region {}
.region-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.region-flag { font-size: 22px; }

.dest-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.dpill {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  cursor: pointer;
}
.dpill:hover {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.dest-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.dest-footer-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   COMPARE SECTION
   ============================================================ */
.compare-section {
  padding: 96px 0;
  background: var(--cream);
}
.compare-cards {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.compare-card {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.compare-card.bad {
  background: #FFF5F3;
  border: 2px solid #F8C9C2;
}
.compare-card.good {
  background: linear-gradient(145deg, #EBF8F4, #D7F0E8);
  border: 2px solid #A8DFD0;
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.compare-icon { font-size: 24px; }
.compare-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.compare-list { display: flex; flex-direction: column; gap: 10px; }
.compare-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-md);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.compare-card.bad  .compare-list li::before { content: "–"; position: absolute; left: 0; color: #E07060; font-weight: 800; }
.compare-card.good .compare-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

.compare-vs {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-lt);
  flex-shrink: 0;
}

.compare-quote {
  text-align: center;
  margin-bottom: 32px;
}
.compare-quote p {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--text);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.compare-quote p::before,
.compare-quote p::after {
  content: '"';
  color: var(--orange);
  font-size: 1.3em;
  line-height: 1;
  vertical-align: -0.15em;
}

.compare-cta { display: flex; justify-content: center; }

/* --- New comparison TABLE (replaces compare-cards) --- */
.cmp-table {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  border: 1px solid rgba(232,144,107,0.15);
}
.cmp-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid rgba(45,41,38,0.07);
}
.cmp-row-last { border-bottom: none; }
.cmp-header {
  background: var(--text);
}
.cmp-label {
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-md);
  background: rgba(45,41,38,0.03);
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(45,41,38,0.07);
  letter-spacing: 0.01em;
}
.cmp-col-good,
.cmp-col-bad {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.cmp-col-good {
  background: rgba(109,181,160,0.08);
  color: var(--teal-dk);
  border-right: 1px solid rgba(45,41,38,0.07);
}
.cmp-col-bad {
  background: rgba(248,201,194,0.15);
  color: #9A6058;
}
/* header row overrides */
.cmp-header .cmp-label { background: var(--text); border-right-color: rgba(255,255,255,0.1); }
.cmp-header .cmp-col-good,
.cmp-header .cmp-col-bad {
  background: var(--text);
  padding: 18px;
  border-right-color: rgba(255,255,255,0.1);
}
.cmp-badge-good,
.cmp-badge-bad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.cmp-badge-good { background: var(--teal); color: white; }
.cmp-badge-bad  { background: rgba(232,100,80,0.85); color: white; }

@media (max-width: 640px) {
  .cmp-row { grid-template-columns: 90px 1fr 1fr; }
  .cmp-label { font-size: 11px; padding: 12px 10px; }
  .cmp-col-good, .cmp-col-bad { font-size: 12px; padding: 12px 10px; }
  .cmp-badge-good, .cmp-badge-bad { font-size: 11px; padding: 5px 10px; }
}
@media (max-width: 420px) {
  .cmp-row { grid-template-columns: 72px 1fr 1fr; }
  .cmp-label { font-size: 10px; padding: 10px 8px; }
  .cmp-col-good, .cmp-col-bad { font-size: 11px; padding: 10px 8px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}
.footer-wa-link:hover { background: #20B857; transform: translateY(-1px); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-ig-link:hover { color: var(--orange); }
.footer-gs {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}

/* ============================================================
   FLOATING WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fabPulse 3s ease-in-out infinite;
}
.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation-play-state: paused;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}
.wa-fab-icon { display: flex; align-items: center; }
.wa-fab-label {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .brand-wrap { grid-template-columns: 1fr; gap: 40px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .compare-cards { flex-direction: column; }
  .compare-vs { transform: rotate(90deg); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero-text h1 { letter-spacing: -0.5px; }

  .map-hint { font-size: 13px; }

  .dest-popup {
    position: fixed;
    bottom: 80px;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
  }

  .type-card { padding: 10px 16px; }
  .type-emoji { font-size: 18px; }
  .type-name { font-size: 14px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) { display: none; }

  .brand-section,
  .dest-section,
  .compare-section { padding: 64px 0; }
  .types-section { padding: 40px 0; }

  .section-header { margin-bottom: 36px; }

  .wa-fab { bottom: 20px; right: 16px; padding: 11px 16px 11px 12px; }
  .wa-fab-label { font-size: 13px; }

  .compare-quote p { font-size: 16px; }
}

@media (max-width: 420px) {
  .type-card { padding: 9px 14px; font-size: 13px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #FBF7F0 0%, #F5EFE4 100%);
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,144,107,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hiw-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}

/* ---- HIW snake flowchart ---- */
.hiw-flow {
  display: grid;
  grid-template-areas:
    "n01 a12 n02 a23 n03 a34 n04"
    ".   .   .   .   .   .  turn"
    ".   .  n07 a67 n06 a56 n05";
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  grid-template-rows: auto 32px auto;
  gap: 0;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
.hiw-fn {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 6px 12px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  min-width: 0;
  min-width: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hiw-fn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hiw-fn-end {
  background: linear-gradient(145deg, #FFF0E8, #FFE4D2);
  border: 2px solid var(--orange);
}
.hiw-nn {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.hiw-nn-end { background: var(--orange-dk); }
.hiw-ni { font-size: 22px; margin: 4px 0 5px; display: block; }
.hiw-nt {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.2;
  word-break: keep-all;
}
.hiw-ns {
  font-size: 10px;
  color: var(--text-lt);
  line-height: 1.35;
  word-break: keep-all;
}
.hiw-fa {
  font-size: 16px;
  color: var(--orange);
  opacity: 0.6;
  font-weight: 700;
  text-align: center;
  width: 28px;
}
.hiw-fa-turn {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .hiw-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hiw-flow > * { grid-area: unset !important; }
  .hiw-fa { transform: rotate(90deg); font-size: 16px; }
  .hiw-fa-turn { transform: none; }
  .hiw-fn { width: 100%; max-width: 280px; }
}
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hiw-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hiw-num {
  position: absolute;
  top: -16px; left: 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
}
.hiw-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.hiw-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hiw-step p {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.7;
}
.hiw-connector {
  font-size: 28px;
  color: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
  align-self: center;
  padding: 0 8px;
  font-weight: 900;
  margin-top: 16px;
}
.hiw-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .hiw-grid {
    flex-direction: column;
    gap: 20px;
  }
  .hiw-connector {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
    margin: -8px 0;
  }
  .hiw-grid-7 .hiw-step {
    flex: 0 1 calc(50% - 10px);
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .hiw-grid-7 .hiw-step {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* ============================================================
   FEATURED TRIPS
   ============================================================ */
.trips-section {
  padding: 96px 0;
  background: var(--cream-dk);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.28s, box-shadow 0.28s;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image area */
.trip-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-dk);
}
.trip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.trip-card:hover .trip-img {
  transform: scale(1.05);
}
/* Placeholder shown when image is broken / missing */
.trip-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #D4E8C2 0%, #B8D4A0 100%);
  pointer-events: none;
}
.trip-card:nth-child(2) .trip-img-placeholder { background: linear-gradient(135deg, #F4D8C8 0%, #E8C0A0 100%); }
.trip-card:nth-child(3) .trip-img-placeholder { background: linear-gradient(135deg, #C8DFF0 0%, #A8C8E8 100%); }
.trip-card:nth-child(4) .trip-img-placeholder { background: linear-gradient(135deg, #F9E8CC 0%, #F0D090 100%); }
.trip-card:nth-child(5) .trip-img-placeholder { background: linear-gradient(135deg, #DDD0F0 0%, #C0A8E0 100%); }
.trip-card:nth-child(6) .trip-img-placeholder { background: linear-gradient(135deg, #C8E8D8 0%, #A0D0B8 100%); }

/* Hide placeholder when real image loads — handled by JS */
.trip-img.loaded + .trip-img-placeholder { display: none; }

.trip-img-placeholder::after {
  content: attr(data-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.35);
}
.tip-emoji {
  font-size: 48px;
  display: block;
}

.trip-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
}
.trip-badge-purple { background: var(--purple); }

/* Trip body */
.trip-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.trip-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trip-days {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(232,144,107,0.1);
  padding: 3px 10px;
  border-radius: 999px;
}
.trip-dot { color: var(--text-lt); font-size: 12px; }
.trip-type {
  font-size: 12px;
  color: var(--text-lt);
  font-weight: 600;
}
.trip-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}
.trip-highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trip-highlights li {
  font-size: 13px;
  color: var(--text-md);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.trip-highlights li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--teal);
  font-weight: 800;
}
.trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dk);
  transition: gap 0.2s;
}
.trip-cta:hover { gap: 8px; }

@media (max-width: 860px) {
  .trips-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trips-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS WALL (marquee)
   ============================================================ */
.reviews-section {
  padding: 96px 0 80px;
  background: var(--cream);
  overflow: hidden;
}

/* Marquee wrapper — full bleed, fades at edges */
.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 56px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

/* Scroll directions */
.track-left  { animation: marqueeLeft  38s linear infinite; }
.track-right { animation: marqueeRight 44s linear infinite; }

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover */
.marquee-row:hover .marquee-track { animation-play-state: paused; }

/* Individual review card */
.rv-card {
  width: 168px;
  height: 298px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--cream-dk);
  box-shadow: 0 3px 16px rgba(45,41,38,0.13);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.rv-card:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 8px 28px rgba(45,41,38,0.2);
  z-index: 2;
}
.rv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}
/* Subtle zoom hint overlay */
.rv-card::after {
  content: '🔍';
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.rv-card:hover::after { opacity: 1; }

/* Social proof bar */
.proof-bar {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.proof-num {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}
.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  white-space: nowrap;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(420px, 92vw);
  max-height: 90vh;
  animation: lightboxIn 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lightboxIn {
  from { opacity:0; transform: scale(0.88); }
  to   { opacity:1; transform: scale(1); }
}
.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.15s, transform 0.15s;
  z-index: 2;
}
.lightbox-close:hover { background: var(--cream-dk); transform: scale(1.1); }

@media (max-width: 860px) {
  .rv-card { width: 144px; height: 256px; }
  .proof-bar { flex-wrap: wrap; gap: 24px; padding: 28px 24px; }
  .proof-divider { display: none; }
}
@media (max-width: 480px) {
  .rv-card { width: 128px; height: 228px; }
}

/* ============================================================
   SCROLL REVEAL (JS adds class .revealed)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
