/* ============================================
   iFlyGo – Mobile-First Stylesheet (Light Theme)
   Brand: Red #ea1e2a · Teal #45c49f
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ea1e2a;
  --red-dark: #c41520;
  --teal: #45c49f;
  --teal-dark: #2fa888;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #555;
  --muted: #888;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,30,42,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.2);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.04);
}

.btn--ghost--light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost--light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
}
.btn--sm:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.logo-fly { color: var(--text); }
.logo-go  { color: var(--red); }

/* Logo on hero (white text before scroll) */
.nav:not(.scrolled) .logo-fly { color: #fff; }

.nav__links {
  display: none;
  gap: 8px;
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--text); background: var(--bg-alt); }

/* White nav links when over hero */
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav__links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
/* Keep dropdown countries dark regardless of scroll position */
.nav:not(.scrolled) .nav__links .nav__dropdown a { color: var(--text); background: none; }
.nav:not(.scrolled) .nav__links .nav__dropdown a:hover { color: var(--red); background: rgba(234,30,42,0.05); }

.nav__cta {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}
.nav__cta:hover { background: var(--red-dark) !important; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
/* White hamburger over hero */
.nav:not(.scrolled) .nav__hamburger span { background: #fff; }

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 1023px) {
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 80px 0 0;
    gap: 0;
    align-items: stretch;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: mobileSlideIn 0.25s ease;
  }
  @keyframes mobileSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .nav__links.open > a,
  .nav__links.open > .nav__dropdown-wrap {
    display: block;
  }
  .nav__links.open > a {
    font-size: 1.1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: 100%;
    padding: 18px 24px;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
  }
  .nav__links.open .nav__cta {
    margin: 16px 24px 0;
    width: calc(100% - 48px);
    text-align: center;
    justify-content: center;
    border-radius: 50px !important;
    padding: 16px 24px !important;
    border-bottom: none !important;
    font-size: 1rem !important;
    text-transform: none !important;
  }

  /* Hide desktop dropdown trigger styling on mobile */
  .nav__links.open .nav__dropdown-trigger {
    font-size: 1.1rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: 100%;
    padding: 18px 24px;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none !important;
    justify-content: space-between;
  }
  .nav__links.open .nav__dropdown-trigger svg {
    transform: rotate(-90deg);
    width: 18px;
    height: 18px;
    color: var(--muted);
  }
  .nav__links.open .nav__dropdown-wrap.open .nav__dropdown-trigger svg {
    transform: rotate(-90deg);
  }

  /* Hide desktop dropdown on mobile — replaced by mobile drill-down */
  .nav__links.open .nav__dropdown { display: none !important; }

  /* Mobile destinations panel */
  .mob-dest-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    animation: mobileSlideIn 0.25s ease;
  }
  .mob-dest-panel.slide-right {
    animation: mobileSlideRight 0.25s ease;
  }
  @keyframes mobileSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .mob-dest__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    min-height: 64px;
  }
  .mob-dest__back {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
  }
  .mob-dest__back svg { width: 20px; height: 20px; }
  .mob-dest__title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
  }
  .mob-dest__close {
    margin-left: auto;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
  }
  .mob-dest__close svg { width: 22px; height: 22px; }
  .mob-dest__list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  .mob-dest__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
  }
  .mob-dest__item:hover,
  .mob-dest__item:active { background: var(--bg-alt); }
  .mob-dest__item svg {
    width: 18px;
    height: 18px;
    color: var(--muted);
    flex-shrink: 0;
  }
  .mob-dest__item--country {
    font-weight: 400;
    color: var(--text-secondary);
    padding: 14px 24px;
  }
  .mob-dest__item--country:hover { color: var(--red); }
}

/* Desktop: keep original styles */
@media (min-width: 1024px) {
  .mob-dest-panel { display: none !important; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }

.hero__slideshow { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  animation: fadeUp 0.8s ease forwards;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero__headline {
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__headline .highlight { color: var(--red); }

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.hero__social-proof strong { color: #fff; }
.hero__avatars { display: flex; }
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: -8px;
  display: inline-block;
}
.avatar:first-child { margin-left: 0; }

.hero__dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
  padding: 0;
}
.dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-bar::-webkit-scrollbar { display: none; }

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .trust-bar__inner {
    flex-wrap: nowrap;
    gap: 32px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section { padding: 80px 0; background: var(--bg); }
.section--alt { background: var(--bg-alt); }
.section--compact { padding: 48px 0; }

.section__header { text-align: center; margin-bottom: 48px; }

.section__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 12px;
}

.section__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FEATURED TRIPS
   ============================================ */
.trips-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-hover); }
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

.trips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trip-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.trip-card.hidden { display: none; }

.trip-card__img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.trip-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.trip-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.trip-card__badge--teal { background: var(--teal); color: #fff; }

.trip-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.trip-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.trip-card { display: flex; flex-direction: column; }

.trip-card__region {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.trip-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.2;
}

.trip-card__stops {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.trip-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.stars { color: #f5a623; font-size: 0.78rem; letter-spacing: 1px; }
.stars--lg { font-size: 1.1rem; letter-spacing: 2px; }
.rating-val { font-weight: 700; font-size: 0.82rem; color: var(--text); }
.rating-count { font-size: 0.75rem; color: var(--muted); }

.trip-card__urgency {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c87800;
  margin-bottom: 12px;
}

.trip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.trip-card__price { display: flex; align-items: baseline; gap: 4px; }
.price-from  { font-size: 0.72rem; color: var(--muted); }
.price-amount {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
}
.price-aud { font-size: 0.72rem; color: var(--muted); }

.trips-cta { text-align: center; margin-top: 48px; }

/* ============================================
   TRIP STYLES GRID
   ============================================ */
.styles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.style-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color, var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.style-card:hover::before { transform: scaleX(1); }
.style-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.style-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--color, var(--red)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.style-card__icon svg { width: 22px; height: 22px; color: var(--color, var(--red)); }

.style-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); }
.style-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

.style-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color, var(--red));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.style-card__link:hover { gap: 10px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--bg-alt); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(234,30,42,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-card__arrow {
  display: none;
  align-self: center;
  justify-self: center;
  font-size: 1.5rem;
  color: var(--border-hover);
  font-weight: 300;
}

.step-card__num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(234,30,42,0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(234,30,42,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card__icon svg { width: 22px; height: 22px; color: var(--red); }

.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.step-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.how-it-works__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card:hover .dest-card__overlay { opacity: 0.45; }

.dest-card--wide { grid-column: span 2; aspect-ratio: 21/6; }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: opacity var(--transition);
}

.dest-card__name {
  position: relative;
  z-index: 1;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================
   DESTINATIONS PHOTO GRID
   ============================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card:hover .dest-card__overlay { opacity: 0.45; }

.dest-card--wide { grid-column: span 2; aspect-ratio: 21/6; }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: opacity var(--transition);
}

.dest-card__name {
  position: relative;
  z-index: 1;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================
   NAV DESTINATIONS DROPDOWN
   ============================================ */
.nav__dropdown-wrap {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  background: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav__dropdown-trigger:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav.scrolled .nav__dropdown-trigger { color: var(--text-secondary); }
.nav.scrolled .nav__dropdown-trigger:hover { color: var(--text); background: var(--bg-alt); }
.nav__dropdown-wrap.open .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-wrap.open .nav__dropdown-trigger { color: #fff; }
.nav.scrolled .nav__dropdown-wrap.open .nav__dropdown-trigger { color: var(--red); }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 540px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2000;
  animation: fadeUp 0.2s ease;
}
.nav__dropdown-wrap.open .nav__dropdown { display: block; }

.nav__dropdown-inner {
  display: flex;
}

.nav__dropdown-continents {
  display: flex;
  flex-direction: column;
  min-width: 170px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 6px 0;
}

.nav__cont {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  background: transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.nav__cont:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav__cont.active {
  color: var(--red);
  font-weight: 600;
  background: #fff;
}
.nav__cont.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--red);
}

.nav__dropdown-countries {
  flex: 1;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 8px;
  align-content: flex-start;
}

.nav__country {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav__country:hover {
  color: var(--red);
  background: rgba(234,30,42,0.05);
}

/* ============================================
   WHY IFLYGO
   ============================================ */
.why { background: var(--bg-alt); overflow: hidden; position: relative; }

.why__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(234,30,42,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(69,196,159,0.05) 0%, transparent 55%);
}
.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(234,30,42,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-card__num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(234,30,42,0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.why-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cred-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(69,196,159,0.4);
  color: var(--teal);
  background: rgba(69,196,159,0.06);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}
.overall-rating strong { font-size: 1.1rem; color: var(--text); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: rgba(69,196,159,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testi-card--featured {
  border-color: rgba(69,196,159,0.25);
  background: linear-gradient(135deg, rgba(69,196,159,0.04) 0%, var(--bg-card) 100%);
}

.testi-card__stars { color: #f5a623; font-size: 0.88rem; letter-spacing: 2px; }

.testi-card blockquote p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}
.testi-card blockquote p::before { content: '"'; }
.testi-card blockquote p::after  { content: '"'; }

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.88rem; color: var(--text); }
.testi-card__author span   { font-size: 0.75rem; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(234,30,42,0.25);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-answer.open { max-height: 200px; padding: 0 22px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.faq-answer a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   FLIGHT CTA BAND
   ============================================ */
.flight-cta {
  background: linear-gradient(135deg, var(--red) 0%, #b50e18 100%);
  padding: 60px 20px;
}

.flight-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.flight-cta__text h2 { font-size: clamp(2rem, 5vw, 2.8rem); color: #fff; margin-bottom: 8px; }
.flight-cta__text p  { font-size: 1rem; color: rgba(255,255,255,0.8); }

.flight-cta .btn--primary {
  background: #fff;
  color: var(--red);
}
.flight-cta .btn--primary:hover {
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: rgba(69,196,159,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(69,196,159,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card__icon svg { width: 22px; height: 22px; color: var(--teal); }

.contact-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }

.contact-card__value {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: color var(--transition);
}
a.contact-card__value:hover { color: var(--teal); }

.contact-card__note { font-size: 0.82rem; color: var(--muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 60px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

.footer .logo-fly { color: #fff; }
.footer .logo-go  { color: var(--red); }

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 240px;
}

.nav__logo--footer { display: block; margin-bottom: 4px; }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer__social a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 64px;
  justify-content: center;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer__bottom p, .footer__bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.65); }
.footer__creds { font-size: 0.72rem !important; }

/* ============================================
   FLOATING CTA BAR
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}
.floating-cta.visible { transform: translateY(0); }

.floating-cta__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.floating-cta__call:hover { background: var(--bg-alt); }
.floating-cta__call svg { width: 16px; height: 16px; color: var(--teal); }

.floating-cta__book {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.floating-cta__book:hover { background: var(--red-dark); }
.floating-cta__book svg { width: 16px; height: 16px; }

body.has-floating-cta { padding-bottom: 0; }

/* ============================================
   BOOK-NAV — remove sticky on mobile
   ============================================ */
@media (max-width: 767px) {
  .book-nav { position: static !important; }
}

/* ============================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================ */
@media (min-width: 640px) {
  .styles-grid          { grid-template-columns: repeat(2, 1fr); }
  .trips-grid           { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(3, 1fr); }
  .trip-card__img       { height: 220px; }

  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0 16px;
    align-items: stretch;
  }
  .step-card__arrow { display: flex; }

  .flight-cta__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .nav__links    { display: flex; }
  .nav__hamburger{ display: none; }

  .section { padding: 100px 0; }

  .styles-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
  .trips-grid  { grid-template-columns: repeat(3, 1fr); }
  .why-grid    { grid-template-columns: repeat(4, 1fr); }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand { flex-shrink: 0; }
  .footer__links { flex-grow: 1; justify-items: end; }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .dest-card__name { font-size: 1.3rem; }

  .floating-cta { display: none; }
  body.has-floating-cta { padding-bottom: 0; }
}

/* ============================================
   TRIP DETAIL STICKY PRICE BAR (mobile)
   ============================================ */
.trip-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(0);
}
.trip-sticky__price {
  font-family: 'Roboto Condensed', sans-serif;
}
.trip-sticky__amount {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text);
}
.trip-sticky__amount small {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--muted);
}
.trip-sticky__sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1px;
}
.trip-sticky__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--transition);
}
.trip-sticky__btn:hover { background: var(--red-dark); }
@media (max-width: 1023px) {
  body:has(.trip-sticky) { padding-bottom: 80px; }
  body:has(.book-sticky) { padding-bottom: 80px; }
}
@media (min-width: 1024px) {
  .trip-sticky { display: none !important; }
}
.book-sticky { display: none !important; }
body:has(.book-sticky) { padding-bottom: 0 !important; }

/* ============================================
   SHORT HERO (inner pages)
   ============================================ */
.hero--short {
  height: 52vh;
  min-height: 340px;
}
.hero--short .hero__headline { font-size: clamp(2.4rem, 7vw, 4rem); }

/* ============================================
   FILTER ROWS (Asia page dual filter)
   ============================================ */
.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  min-width: 80px;
}
.filter-row .trips-filter { margin-bottom: 0; }

/* ============================================
   TRIPS CTA NOTE
   ============================================ */
.trips-cta__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ============================================
   ASIA CTA BAND
   ============================================ */
.asia-cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #b50e18 100%);
  padding: 60px 20px;
}

/* ============================================
   UTILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.active-link { color: var(--red) !important; }

/* ===== TRIP DETAIL PAGE ===== */
.trip-hero { position: relative; height: 56vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.trip-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.trip-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%); }
.trip-hero__content { position: relative; z-index: 2; width: 100%; padding: 40px 20px 36px; max-width: 1200px; margin: 0 auto; color: #fff; }
.trip-hero__badge { display: inline-block; background: var(--red); color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 4px; margin-bottom: 12px; }
.trip-hero__title { font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.1; margin: 0 0 8px; }
.trip-hero__sub { font-size: 1.05rem; opacity: 0.9; margin: 0; }

/* Quick-facts strip */
.quick-facts { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 0; }
.quick-facts__inner { display: flex; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.quick-fact { flex: 1 1 160px; display: flex; align-items: center; gap: 10px; padding: 18px 24px; border-right: 1px solid var(--border); }
.quick-fact:last-child { border-right: none; }
.quick-fact__icon { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.quick-fact__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); line-height: 1.2; }
.quick-fact__value { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.2; }

/* Trip content layout */
.trip-content { max-width: 1200px; margin: 0 auto; padding: 48px 20px; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) {
  .trip-content { grid-template-columns: 2fr 1fr; gap: 40px; }
}
.trip-main { min-width: 0; }
.trip-sidebar { position: relative; }

/* Section blocks */
.trip-block { margin-bottom: 40px; }
.trip-block__title { font-family: 'Roboto Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; margin: 0 0 16px; color: var(--text); }
.trip-block__intro { color: var(--text-secondary); line-height: 1.7; margin: 0 0 20px; font-size: 0.95rem; }

/* Highlights grid */
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-alt); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text); }
.highlight-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* Itinerary accordion */
.itin-day { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; transition: box-shadow var(--transition); }
.itin-day:hover { box-shadow: var(--shadow); }
.itin-day__header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; cursor: pointer; background: var(--bg); }
.itin-day__header[aria-expanded="true"] { background: var(--bg-alt); }
.itin-day__num { background: var(--red); color: #fff; font-family: 'Roboto Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; min-width: 52px; text-align: center; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.itin-day__name { font-weight: 600; font-size: 0.95rem; flex: 1; color: var(--text); }
.itin-day__chevron { width: 20px; height: 20px; color: var(--muted); transition: transform var(--transition); flex-shrink: 0; }
.itin-day__header[aria-expanded="true"] .itin-day__chevron { transform: rotate(180deg); }
.itin-day__body { padding: 0 20px 20px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; display: none; }
.itin-day__body.open { display: block; }

/* Inclusions */
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .inclusions-grid { grid-template-columns: 1fr; } }
.inclusions-col h4 { font-family: 'Roboto Condensed', sans-serif; font-weight: 700; font-size: 1rem; margin: 0 0 12px; }
.inclusions-col.included h4 { color: var(--teal); }
.inclusions-col.excluded h4 { color: var(--red); }
.inclusions-col ul { list-style: none; padding: 0; margin: 0; }
.inclusions-col li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.inclusions-col li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.inclusions-col.included li svg { color: var(--teal); }
.inclusions-col.excluded li svg { color: var(--red); }

/* Sticky sidebar booking card */
.booking-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
@media (min-width: 768px) {
  .booking-card { position: sticky; top: 100px; }
}
.booking-card__price { font-family: 'Roboto Condensed', sans-serif; }
.booking-card__from { font-size: 0.85rem; color: var(--muted); }
.booking-card__amount { font-size: 2.2rem; font-weight: 900; color: var(--text); }
.booking-card__currency { font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.booking-card__per { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 20px; }
.booking-card__detail { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.booking-card__detail:last-of-type { border-bottom: none; margin-bottom: 20px; }
.booking-card__label { color: var(--muted); }
.booking-card__val { font-weight: 600; color: var(--text); }
.booking-card .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.booking-card__phone { display: block; text-align: center; font-size: 0.88rem; color: var(--text-secondary); }
.booking-card__phone a { color: var(--red); font-weight: 600; text-decoration: none; }

/* Departure dates */
.departures-note { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 16px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; border-left: 4px solid var(--teal); }

@media (max-width: 767px) {
  .quick-fact { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .trip-hero { height: 44vh; min-height: 300px; }
}
