/* =========================================================
   trip.css — Trip detail page styles
   Builds on home-v2.css design tokens
   ========================================================= */

.trip-loading { min-height: 60vh; display: grid; place-items: center; gap: 16px; color: var(--cream); }
.spinner { width: 48px; height: 48px; border: 3px solid rgba(212,175,55,.2); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* === Hero === */
.trip-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.trip-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  z-index: -2;
}
.trip-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,.5), transparent 60%);
  z-index: -1;
}
.trip-hero .container { padding-block: 80px 50px; position: relative; }
.trip-breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  color: var(--gold-2);
  font-size: 0.88rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.trip-breadcrumbs a { color: var(--gold-2); text-decoration: none; }
.trip-breadcrumbs a:hover { color: var(--gold); }
.trip-breadcrumbs span { color: rgba(255,255,255,.4); }

.trip-flag { font-size: 3rem; line-height: 1; margin-bottom: 8px; }
.trip-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.trip-title em { color: var(--gold); font-style: normal; }
.trip-tagline {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: rgba(255,255,255,.85);
  margin: 0 0 26px;
  max-width: 720px;
}

.trip-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.trip-pill {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trip-pill b { color: var(--gold-2); }
.trip-pill.is-price { background: linear-gradient(135deg, var(--gold), var(--gold-3)); color: #1a1a1a; border-color: transparent; font-weight: 700; }

.trip-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* === Sticky tab nav === */
.trip-tabs {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,.18);
}
.trip-tabs .container {
  display: flex; gap: 4px; overflow-x: auto;
  scrollbar-width: none;
  padding-block: 8px;
}
.trip-tabs .container::-webkit-scrollbar { display: none; }
.trip-tab {
  padding: 12px 18px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
  border-radius: 8px;
}
.trip-tab:hover { color: #fff; }
.trip-tab.active { color: var(--gold); }
.trip-tab.active::after {
  content: ''; position: absolute; bottom: -8px; left: 16px; right: 16px;
  height: 2px; background: var(--gold);
}

/* === Main grid === */
.trip-main { padding-block: 50px; background: linear-gradient(180deg, #0a0a0a, #111); }
.trip-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 40px;
  align-items: start;
}
/* Grid items default to min-width:auto, which lets nowrap content (e.g. the
   booking-widget quote) overflow the track and expand the layout viewport on
   mobile. Allow them to shrink and let the quote wrap. */
.trip-grid > * { min-width: 0; }
.book-widget { min-width: 0; }
.book-widget .bw-quote { white-space: normal; max-width: 100%; }
.trip-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 18px;
  padding: 32px;
  color: var(--cream);
  margin-bottom: 24px;
  scroll-margin-top: 140px;
}
.trip-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.trip-card .eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.trip-card .lead { color: rgba(248,244,236,.75); margin: 14px 0 22px; line-height: 1.8; }

/* === Overview chips === */
.over-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.over-chip {
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

/* === Highlights grid === */
.highlights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 8px;
}
.highlight-item {
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}
.highlight-item::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* === Itinerary === */
.itinerary { position: relative; padding-right: 0; }
.day {
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.25s;
}
.day:hover {
  border-color: rgba(212,175,55,.4);
  transform: translateX(-4px);
  box-shadow: -8px 8px 24px rgba(212,175,55,.08);
}
.day-head {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  user-select: none;
}
.day-num {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.1;
  text-align: center;
}
.day-num small { display: block; font-size: 0.55rem; opacity: 0.8; letter-spacing: 0.1em; }
.day-num b { display: block; font-size: 1.5rem; }
.day-info { flex: 1; min-width: 0; }
.day-info h3 {
  margin: 0; color: #fff; font-size: 1.15rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.day-icon { font-size: 1.4rem; }
.day-info .day-city { color: var(--gold-2); font-size: 0.85rem; margin-top: 2px; display: block; }
.day-toggle {
  color: var(--gold);
  font-size: 1.6rem;
  transition: transform 0.3s;
  line-height: 1;
}
.day.open .day-toggle { transform: rotate(180deg); }

.day-body {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.3s;
}
.day.open .day-body { max-height: 1200px; margin-top: 18px; }
.day-acts { list-style: none; padding: 0; margin: 0; }
.day-acts li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: rgba(248,244,236,.85);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(212,175,55,.12);
}
.day-acts li:last-child { border-bottom: 0; }
.day-acts li::before {
  content: '';
  position: absolute; right: 0; top: 18px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}
.day-meals {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,175,55,.15);
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.82rem;
  color: var(--gold-2);
}
.day-meal-tag {
  background: rgba(212,175,55,.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* === Includes / Excludes === */
.inex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inex-col h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
}
.inex-col h3.is-good::before { content: '✓'; color: #4ade80; font-weight: 900; font-size: 1.3rem; }
.inex-col h3.is-bad::before { content: '✕'; color: #f87171; font-weight: 900; font-size: 1.3rem; }
.inex-col ul { list-style: none; padding: 0; margin: 0; }
.inex-col li {
  padding: 8px 0;
  color: rgba(248,244,236,.78);
  font-size: 0.93rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(255,255,255,.06);
}
.inex-col li:last-child { border-bottom: 0; }

/* === Hotels === */
.hotel-block { margin-bottom: 22px; }
.hotel-block h3 {
  font-size: 1.05rem; color: var(--gold-2);
  margin: 0 0 10px; display: flex; align-items: center; gap: 6px;
}
.hotel-list { display: grid; gap: 10px; }
.hotel-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--cream);
  display: flex; align-items: center; gap: 10px;
}
.hotel-item::before { content: '🏨'; font-size: 1.1rem; }
.hotel-item .stars { margin-right: auto; color: var(--gold); font-size: 0.85rem; }

/* === Gallery === */
.tgallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tgallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s;
}
.tgallery img:hover { transform: scale(1.03); }

/* === FAQ === */
.faq-list .faq-row {
  border-bottom: 1px solid rgba(212,175,55,.15);
  padding-block: 4px;
}
.faq-row summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary::after {
  content: '+';
  font-size: 1.5rem; color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-row[open] summary::after { content: '−'; }
.faq-row p {
  margin: 0 0 16px;
  color: rgba(248,244,236,.78);
  line-height: 1.8;
}

/* === Sidebar booking widget === */
.book-widget {
  position: sticky;
  top: 130px;
  background: linear-gradient(180deg, #1a1814, #0e0d0a);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.1) inset;
}
.bw-eyebrow { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.2em; font-weight: 700; }
.bw-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: #fff; margin: 6px 0 2px; line-height: 1; }
.bw-price small { font-family: 'Cairo', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,.55); font-weight: 400; display: block; margin-top: 4px; }
.bw-rating { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin: 8px 0 18px; }

.bw-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(212,175,55,.15);
  font-size: 0.92rem;
  color: rgba(248,244,236,.8);
}
.bw-row:last-of-type { border-bottom: 0; margin-bottom: 16px; }
.bw-row span:last-child { color: #fff; font-weight: 600; }

.bw-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-align: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.bw-btn.is-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1a1a1a;
}
.bw-btn.is-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.35); }
.bw-btn.is-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.bw-btn.is-ghost:hover { background: rgba(255,255,255,.06); }
.bw-trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(212,175,55,.15);
  font-size: 0.78rem;
  color: rgba(248,244,236,.5);
  line-height: 1.7;
}
.bw-trust b { color: var(--gold-2); font-weight: 600; }

/* === Related === */
.related {
  padding: 60px 0;
  background: #0c0c0c;
}
.related h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2rem;
  margin: 0 0 8px;
}
.related .lead { color: var(--gold-2); margin: 0 0 28px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rel-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  display: block;
  transition: all 0.25s;
}
.rel-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.45); }
.rel-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.rel-body { padding: 16px 18px; }
.rel-body h3 { margin: 0 0 4px; color: #fff; font-size: 1.05rem; }
.rel-body p { margin: 0; font-size: 0.86rem; color: var(--gold-2); }
.rel-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; font-size: 0.85rem; }
.rel-foot b { color: #fff; }

/* === Sticky booking bar (mobile) === */
.trip-stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212,175,55,.3);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.trip-stickybar.show { transform: translateY(0); }
.trip-stickybar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.sb-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sb-price { color: var(--gold); font-weight: 800; font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.sb-meta { color: rgba(255,255,255,.6); font-size: 0.8rem; }
.sb-cta { display: flex; gap: 8px; }
.btn-ghost, .btn-gold {
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-3)); color: #1a1a1a; }

/* === Lightbox === */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.95);
  display: grid; place-items: center;
  padding: 40px;
}
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}
.lb-close { top: 20px; right: 20px; }
.lb-prev { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { left: 20px; top: 50%; transform: translateY(-50%); }

/* === Responsive === */
@media (max-width: 1000px) {
  .trip-grid { grid-template-columns: 1fr; }
  .book-widget { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .trip-hero { min-height: 60vh; }
  .trip-hero .container { padding-block: 60px 32px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .inex-grid { grid-template-columns: 1fr; }
  .tgallery { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .trip-card { padding: 22px; }
  .day { padding: 18px; }
  .trip-tabs { top: 0; }
  body { padding-bottom: 80px; }
  .wa-fab { bottom: 90px; }
}

/* =====================================================
   v2 — Why / Flight / Pricing / Services / Payment / Visa / Before You Go
   ===================================================== */

/* WHY CHOOSE */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(212,175,55,.05);
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 12px;
  color: rgba(248,244,236,.85);
  font-size: 0.95rem;
  transition: all 0.25s;
}
.why-item:hover {
  background: rgba(212,175,55,.1);
  border-color: rgba(212,175,55,.35);
  transform: translateX(-4px);
}
.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* FLIGHT */
.flight-card {
  margin-top: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(212,175,55,.06), rgba(212,175,55,.02));
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 18px;
}
.flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(212,175,55,.25);
}
.flight-end {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.flight-end .flight-city {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.flight-end .flight-code {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}
.flight-line {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}
.plane-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 4px 8px rgba(212,175,55,.4));
}
.flight-line-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
  position: relative;
}
.flight-line-bar::before,
.flight-line-bar::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: -3px;
}
.flight-line-bar::before { right: 0; }
.flight-line-bar::after { left: 0; }
.flight-duration {
  font-size: 0.85rem;
  color: var(--gold-2);
  font-weight: 600;
}
.flight-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fm-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,.25);
  border-radius: 10px;
  font-size: 0.92rem;
}
.fm-label { color: rgba(248,244,236,.6); }
.fm-val { color: #fff; font-weight: 600; text-align: end; }
.flight-note {
  margin: 20px 0 0;
  padding: 12px 16px;
  background: rgba(212,175,55,.08);
  border-right: 3px solid var(--gold);
  border-radius: 8px;
  color: rgba(248,244,236,.85);
  font-size: 0.92rem;
}

/* PRICING TIERS */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.price-tier {
  position: relative;
  padding: 28px 22px 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}
.price-tier:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 20px 50px rgba(212,175,55,.1);
}
.price-tier.is-popular {
  background: linear-gradient(180deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.1);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-icon {
  font-size: 2.6rem;
  margin-bottom: 10px;
  line-height: 1;
}
.tier-label {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
}
.tier-curr {
  font-size: 0.85rem;
  color: var(--gold-2);
  font-weight: 600;
}
.tier-price b {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.tier-price small {
  font-size: 0.75rem;
  color: rgba(248,244,236,.6);
  font-family: 'Cairo', sans-serif;
}
.tier-note {
  font-size: 0.86rem;
  color: rgba(248,244,236,.65);
  margin: 0 0 18px;
  min-height: 32px;
}
.tier-btn {
  display: block;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.tier-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1a1a1a;
}
.price-tier.is-popular .tier-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1a1a1a;
}

/* SEASONS */
.seasons-strip {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed rgba(212,175,55,.18);
}
.seasons-strip h4 {
  color: rgba(248,244,236,.75);
  font-size: 1rem;
  margin: 0 0 14px;
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.season-card {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(212,175,55,.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.season-card.season-high { border-color: rgba(220,80,80,.35); background: rgba(220,80,80,.05); }
.season-card.season-low { border-color: rgba(80,180,120,.35); background: rgba(80,180,120,.05); }
.season-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.season-period { font-size: 0.82rem; color: rgba(248,244,236,.65); }
.season-factor {
  margin-top: 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--gold-2);
  font-size: 1.05rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.service-card {
  padding: 22px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 14px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  border-color: rgba(212,175,55,.4);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }
.svc-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(212,175,55,.25));
}
.service-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.service-card p {
  color: rgba(248,244,236,.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* PAYMENT */
.pay-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.pay-deposit, .pay-install {
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(212,175,55,.02));
  border: 1px solid rgba(212,175,55,.3);
  text-align: center;
}
.pay-deposit-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(248,244,236,.65);
  margin-bottom: 8px;
}
.pay-deposit-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.pay-deposit-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(248,244,236,.55);
}
.pay-install {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pay-install-icon {
  font-size: 2rem;
}
.pay-install strong {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
}
.pay-h4 {
  color: rgba(248,244,236,.85);
  font-size: 1.05rem;
  margin: 28px 0 14px;
}
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.pay-method {
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 999px;
  color: rgba(248,244,236,.85);
  font-size: 0.9rem;
  font-weight: 600;
}
.pay-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(0,0,0,.2);
  border-radius: 12px;
}
.pay-guarantee {
  display: flex;
  gap: 10px;
  color: rgba(248,244,236,.8);
  font-size: 0.92rem;
  line-height: 1.6;
}
.pay-guarantee b { color: var(--gold-2); }

/* VISA */
.visa-block {
  margin-top: 18px;
  padding: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 14px;
}
.visa-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(212,175,55,.2);
}
.visa-icon {
  font-size: 2.2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.visa-head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.15rem;
}
.visa-status {
  margin: 0;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 0.95rem;
}
.visa-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.visa-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0,0,0,.18);
  border-radius: 8px;
  font-size: 0.92rem;
}
.visa-row span:first-child { color: rgba(248,244,236,.6); }
.visa-row span:last-child { color: #fff; font-weight: 600; }
.visa-support {
  margin: 0;
  padding: 12px 16px;
  background: rgba(212,175,55,.08);
  border-right: 3px solid var(--gold);
  border-radius: 8px;
  color: rgba(248,244,236,.8);
  font-size: 0.9rem;
}

/* BEFORE YOU GO */
.before-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.before-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 12px;
}
.bf-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,175,55,.12);
  display: grid;
  place-items: center;
}
.before-item strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.before-item span {
  color: rgba(248,244,236,.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
  .flight-card { padding: 18px; }
  .flight-route { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .flight-meta { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .pay-top { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
