/* ============================================================
   ZURIFLIGHT — Premium Travel Agency Design
   Inspired by ASAP Tickets / Professional Travel Platforms
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-light: #132039;
  --navy-mid: #1a2d4d;
  --blue: #1565c0;
  --blue-hover: #1255a1;
  --blue-light: #e3f2fd;
  --orange: #f57c00;
  --orange-light: #fff3e0;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --gold: #ffc107;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Sans', sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ============================================================
   HEADER — Dark Navy Professional
   ============================================================ */

.zf-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.zf-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin-right: 2.5rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.logo span { color: var(--orange); }
.logo small { font-size: 0.6rem; font-weight: 400; color: var(--gray-400); letter-spacing: 0; }
.logo:hover { text-decoration: none; }

.zf-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.zf-nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.zf-nav a:hover { color: var(--blue); background: var(--gray-50); text-decoration: none; }
.nav-account, .nav-login {
  margin-left: auto;
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px !important;
}
.nav-account:hover, .nav-login:hover { background: #e56900 !important; }

.zf-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.zf-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn.primary { background: var(--orange); color: #fff; box-shadow: 0 2px 8px rgba(245,124,0,0.3); }
.btn.primary:hover { background: #e56900; box-shadow: 0 4px 16px rgba(245,124,0,0.4); }

.btn.secondary { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.btn.secondary:hover { background: var(--blue); color: #fff; }

.btn.full { width: 100%; }

/* ============================================================
   FORMS
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.field.full { grid-column: 1 / -1; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.home-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
  padding: 3rem 1.5rem 4rem;
  position: relative;
  overflow: visible;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=1920&q=40') center/cover;
  opacity: 0.12;
}
.home-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.home-hero__copy { text-align: center; margin-bottom: 2.5rem; }
.home-hero__copy h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.home-hero__copy h1 .accent { color: var(--orange); }
.home-hero__copy p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

.home-hero__highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.home-hero__highlights span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* SEARCH BOX — Pixel-perfect ASAP Tickets style */
.home-search-box {
  background: transparent;
  border-radius: 4px;
  padding: 0;
  max-width: 960px;
  margin: 0 auto;
  overflow: visible;
}

form#heroSearchForm {
  background-color: #ffffff;
  padding-bottom: 20px;
  position: relative;
  overflow: visible;
}

/* Tabs */
.search-tabs { display: flex; gap: 0; background: transparent; padding: 0; }
.search-tab {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.search-tab.active { background: var(--white); color: var(--gray-800); border-bottom: 2px solid var(--white); position: relative; }
.search-tab--filled { background: var(--blue); color: #fff !important; }
.search-tab--filled:hover { background: var(--blue-hover); }
.search-tab__icon { font-size: 1rem; }

/* Options row: Round-Trip / One-Way / Multi-City ... Cabin Class */
.search-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.search-options-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray-700);
}
.radio-label input[type="radio"] { margin: 0; accent-color: var(--blue); }
.multi-city-link { color: var(--blue); font-weight: 600; font-size: 0.88rem; text-decoration: underline; }
.search-options-right { display: flex; align-items: center; gap: 0.5rem; }
.cabin-label { font-size: 0.88rem; color: var(--gray-600); font-weight: 500; }
.cabin-select {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--gray-700);
  background: var(--white);
}

/* Fields row — Material UI outlined style like ASAP */
.search-fields-row {
  display: flex;
  align-items: stretch;
  padding: 0 1.5rem 0;
  gap: 0;
  padding-top: 30px;
}

/* Groups */
.sf-group { display: flex; align-items: stretch; }
.sf-group--routing { flex: 2.4; margin-right: 8px; }
.sf-group--dates { flex: 2; margin-right: 8px; }
.sf-group--pax { flex: 0.9; margin-right: 8px; position: relative; }

/* Outlined input — floating label (Material UI style) */
.sf-outlined {
  position: relative;
  flex: 1;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.15s;
}
.sf-outlined + .sf-outlined { border-left: none; border-radius: 0 4px 4px 0; }
.sf-outlined:first-child { border-radius: 4px 0 0 4px; }
.sf-outlined:only-child { border-radius: 4px; }
.sf-group--dates .sf-outlined:first-child { border-radius: 4px 0 0 4px; }
.sf-group--dates .sf-outlined:last-child { border-radius: 0 4px 4px 0; border-left: none; }

.sf-outlined input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  padding: 18px 12px 6px;
  background: transparent;
  height: 48px;
}
.sf-outlined input::placeholder { color: transparent; }
.sf-outlined input:focus::placeholder { color: var(--gray-400); }

.sf-outlined label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray-500);
  pointer-events: none;
  transition: all 0.15s ease;
  background: var(--white);
  padding: 0 4px;
}

/* Float label up when focused or has value */
.sf-outlined input:focus ~ label,
.sf-outlined input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 11px;
  color: var(--blue);
}

.sf-outlined:focus-within {
  border-color: var(--blue);
  z-index: 2;
}

/* Swap button between origin/dest */
.sf-swap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  background: transparent;
  border: none;
  color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  gap: 2px;
  z-index: 3;
}
.sf-swap svg { display: block; width: 14px; height: 7px; }
.sf-swap:hover { color: var(--blue-hover); }

/* Pax trigger inside outlined box */
.sf-pax-trigger-wrap {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  height: 48px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s;
}
.sf-pax-trigger-wrap:hover { border-color: var(--gray-400); }
.pax-trigger {
  background: none;
  border: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  cursor: pointer;
  padding: 0 12px;
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.pax-arrow { margin-left: auto; font-size: 10px; color: var(--gray-500); }

/* Submit button */
.sf-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
  height: 48px;
  min-width: 150px;
}
.sf-submit:hover { background: var(--blue-hover); }

/* Passenger dropdown panel */
.pax-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 100;
  min-width: 220px;
  margin-top: 4px;
}
.pax-dropdown.is-open { display: block; }
.pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.pax-row:last-of-type { border-bottom: none; }
.pax-row__label { font-size: 0.9rem; color: var(--gray-700); }
.pax-row__controls { display: flex; align-items: center; gap: 0; }
.pax-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-300);
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.1s;
}
.pax-btn:hover { background: var(--gray-50); border-color: var(--blue); color: var(--blue); }
.pax-btn:first-child { border-radius: 4px 0 0 4px; }
.pax-btn:last-child { border-radius: 0 4px 4px 0; }
.pax-row__count {
  width: 36px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.9rem;
  font-weight: 600;
}
.pax-ok {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.pax-ok:hover { background: var(--blue); color: #fff; }

.search-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 0.6rem 1.5rem 0.9rem;
  margin: 0;
  background: #fff;
}

/* AIRLINE MARQUEE BAR — transparent, inside hero at bottom */
.airline-marquee-bar {
  background: transparent;
  padding: 1.75rem 0 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
}
.airline-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.airline-marquee__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.airline-marquee__track img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.airline-marquee__track img:hover { opacity: 1; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-header {
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   DEAL CARDS (with images like ASAP)
   ============================================================ */

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.deal-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  text-decoration: none;
}
.deal-card__img {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
}
.deal-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.deal-card__img::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.deal-card__airline {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
}
.deal-card__body { padding: 1.1rem 1.25rem; }
.deal-card__route { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.deal-card__meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.deal-card__price { display: flex; align-items: baseline; gap: 0.4rem; }
.deal-card__price span { font-size: 0.8rem; color: var(--text-muted); }
.deal-card__price strong { font-size: 1.4rem; color: var(--orange); font-weight: 800; }
.deal-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--blue);
  border-radius: 5px;
  transition: all 0.15s;
}
.deal-card:hover .deal-card__cta { background: var(--blue); color: #fff; }

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 1.5rem;
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-item__num { font-size: 2rem; font-weight: 800; color: var(--blue); display: block; }
.stat-item__label { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-card__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FEATURES / BENEFITS
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1rem; margin: 0 0 0.3rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   SUBSCRIBE BANNER — Premium CTA with background image
   ============================================================ */

.subscribe-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-width: var(--max-w);
  margin: 3rem auto;
  min-height: 296px;
}
.subscribe-banner__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.subscribe-banner__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 100%);
  z-index: 1;
}
.subscribe-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
}
.subscribe-banner__copy {
  flex: 1;
}
.subscribe-banner__copy h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.subscribe-banner__copy p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
.subscribe-banner__form-wrap {
  flex-shrink: 0;
}
.subscribe-banner__card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Subscribe form fields */
.subscribe-form__field {
  position: relative;
  margin-bottom: 1rem;
}
.subscribe-form__field input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 18px 12px 6px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
}
.subscribe-form__field input:focus { border-color: var(--blue); }
.subscribe-form__field input::placeholder { color: transparent; }
.subscribe-form__field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray-500);
  pointer-events: none;
  transition: all 0.15s ease;
  background: #fff;
  padding: 0 4px;
}
.subscribe-form__field input:focus ~ label,
.subscribe-form__field input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 11px;
  color: var(--blue);
}

.subscribe-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.subscribe-form__agree input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.subscribe-form__agree label {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
  cursor: pointer;
}

.subscribe-form__btn {
  width: 100%;
  height: 48px;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.subscribe-form__btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Security badge */
.subscribe-banner__badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 3rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}
.subscribe-banner__badge svg {
  flex-shrink: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .subscribe-banner { border-radius: 0; margin: 0; min-height: auto; }
  .subscribe-banner__inner { flex-direction: column; padding: 2rem 1.5rem; }
  .subscribe-banner__card { width: 100%; }
  .subscribe-banner__copy h2 { font-size: 1.4rem; }
  .subscribe-banner__badge { padding: 0.75rem 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.zf-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 1.5rem;
}
.zf-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.zf-footer-brand strong { color: #fff; font-size: 1.2rem; display: block; margin-bottom: 0.5rem; }
.zf-footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.zf-footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; }
.zf-footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; padding: 0.25rem 0; text-decoration: none; }
.zf-footer-col a:hover { color: #fff; text-decoration: none; }
.zf-footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PAGES — General
   ============================================================ */

.section { max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem; }
.section h1, .section h2 { font-weight: 800; color: var(--gray-900); }
.section h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.section h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.muted { color: var(--text-muted); }
.eyebrow { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 0.5rem; }

.panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.notice { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.9rem; background: var(--gray-100); border: 1px solid var(--gray-200); }
.notice--success { background: var(--green-light); border-color: #a5d6a7; color: #1b5e20; }
.notice--error { background: #fce4ec; border-color: #ef9a9a; color: #b71c1c; }

/* ============================================================
   AUTH PAGES
   ============================================================ */

.auth-page { max-width: 440px; margin: 0 auto; padding: 3rem 1.5rem; }
.auth-page h1 { text-align: center; }
.auth-page .lead { text-align: center; }
.auth-panel { margin-top: 1.5rem; }
.auth-links { text-align: center; margin-top: 1rem; font-size: 0.88rem; color: var(--text-muted); }
.form-stack .field { margin-bottom: 1rem; }
.form-stack .field label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.85rem; }
.form-stack .field small { display: block; margin-top: 0.3rem; font-size: 0.78rem; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */

.account-page { max-width: 1000px; margin: 0 auto; }
.account-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.account-avatar__placeholder { width: 60px; height: 60px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; }
.account-grid { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; }
.account-trip-board {
  margin-bottom: 1.5rem;
}
.trip-board-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.trip-board-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.85rem;
  background: var(--gray-50);
}
.trip-board-item span {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.trip-board-item strong {
  color: var(--gray-900);
}
.account-nav ul { list-style: none; padding: 0; }
.account-nav ul li a { display: block; padding: 0.5rem 0.8rem; border-radius: 6px; text-decoration: none; color: var(--text); font-size: 0.88rem; }
.account-nav ul li a:hover { background: var(--gray-100); text-decoration: none; }
.booking-list { display: flex; flex-direction: column; gap: 0.75rem; }
.booking-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem; }
.booking-card__route { font-weight: 700; }
.booking-card__details { display: flex; gap: 1rem; margin-top: 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.badge { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
.badge--confirmed, .badge--paid { background: var(--green-light); color: #1b5e20; }
.badge--pending, .badge--new, .badge--deposit_due { background: var(--orange-light); color: #e65100; }
.badge--cancelled { background: #fce4ec; color: #b71c1c; }
.badge--completed, .badge--quoted, .badge--payment_sent, .badge--not_required { background: var(--blue-light); color: #0d47a1; }

/* ============================================================
   LOADING & AI
   ============================================================ */

.loading-state { display: flex; flex-direction: column; align-items: center; padding: 3rem; text-align: center; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--gray-200); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.7s linear infinite; margin-bottom: 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }

.ai-response { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; margin-top: 1rem; }
.results { margin-top: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .zf-footer-inner { grid-template-columns: 1fr 1fr; }
  .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .zf-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #ffffff; flex-direction: column; padding: 1rem; gap: 0; z-index: 999; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
  .zf-nav.is-open { display: flex; }
  .zf-nav a { padding: 0.75rem 1rem; width: 100%; color: var(--gray-700); }
  .nav-account, .nav-login { margin-left: 0 !important; margin-top: 0.5rem; text-align: center; }
  .zf-nav-toggle { display: block; margin-left: auto; }

  .home-hero__copy h1 { font-size: 1.7rem; }
  .home-hero__highlights { gap: 1rem; }

  .search-options-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .search-options-right { width: 100%; }
  .search-fields-row { flex-direction: column; padding: 0 1rem; gap: 0.75rem; padding-top: 20px; }
  .sf-group { width: 100%; }
  .sf-group--routing, .sf-group--dates, .sf-group--pax { flex: unset; margin-right: 0; }
  .sf-swap { width: 24px; }
  .sf-submit { width: 100%; height: 48px; min-width: unset; }
  .pax-dropdown { right: auto; left: 0; }

  .form-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 1rem; }
  .stat-item__num { font-size: 1.5rem; }
  .zf-footer-inner { grid-template-columns: 1fr; }
  .zf-footer-bottom { flex-direction: column; gap: 0.5rem; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .form-grid { grid-template-columns: 1fr; }
  .home-hero__highlights span { font-size: 0.8rem; }
}


/* ============================================================
   FLIGHT RESULTS PAGE
   ============================================================ */

.flight-results-page { max-width: 900px; }

/* Summary bar */
.fr-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.fr-summary__route { display: flex; align-items: center; gap: 0.5rem; }
.fr-summary__city { font-size: 1.2rem; font-weight: 800; color: var(--gray-900); }
.fr-summary__arrow { color: var(--blue); font-size: 1.1rem; }
.fr-summary__details { font-size: 0.85rem; color: var(--gray-600); display: flex; gap: 0.4rem; flex-wrap: wrap; }
.fr-summary__edit { margin-left: auto; font-size: 0.85rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.fr-summary__edit:hover { text-decoration: underline; }

/* Header with sort */
.fr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.fr-header h1 { font-size: 1.3rem; margin: 0; }
.fr-sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.fr-sort select { padding: 0.4rem 0.7rem; border: 1px solid var(--gray-300); border-radius: 4px; font-family: var(--font); font-size: 0.85rem; }

/* Offer cards */
.fr-offers { display: flex; flex-direction: column; gap: 0.75rem; }

.fr-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  gap: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.fr-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }

.fr-card__airline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 80px;
}
.fr-card__logo { width: 40px; height: 40px; object-fit: contain; }
.fr-card__airline-name { font-size: 0.72rem; color: var(--gray-500); text-align: center; white-space: nowrap; }

.fr-card__flight {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fr-card__leg { text-align: center; min-width: 50px; }
.fr-card__time { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); }
.fr-card__code { font-size: 0.75rem; color: var(--gray-500); font-weight: 600; }

.fr-card__duration {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.fr-card__dur-text { font-size: 0.75rem; color: var(--gray-500); }
.fr-card__dur-line {
  width: 100%;
  height: 2px;
  background: var(--gray-300);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fr-card__dur-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-400); }
.fr-card__dur-stop { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--orange); }
.fr-card__stops-text { font-size: 0.72rem; color: var(--gray-500); }

.fr-card__price-col {
  text-align: center;
  min-width: 120px;
}
.fr-card__price { font-size: 1.4rem; font-weight: 800; color: var(--blue); }
.fr-card__per { font-size: 0.7rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.fr-card__btn { padding: 0.5rem 1.5rem; font-size: 0.85rem; }

.fr-disclaimer { font-size: 0.75rem; color: var(--gray-500); margin-top: 2rem; text-align: center; }

.fr-empty, .fr-error, .fr-demo { text-align: center; padding: 3rem 1.5rem; }

@media (max-width: 768px) {
  .fr-card { flex-direction: column; align-items: stretch; gap: 1rem; padding: 1rem; }
  .fr-card__airline { flex-direction: row; min-width: unset; }
  .fr-card__flight { justify-content: space-between; }
  .fr-card__price-col { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .fr-card__price { font-size: 1.2rem; }
  .fr-summary { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .fr-summary__edit { margin-left: 0; }
}


/* ============================================================
   AIRPORT AUTOCOMPLETE DROPDOWN — ASAP Tickets Style
   ============================================================ */

.airport-ac-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  background: #fff;
  border: 1px solid var(--blue);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 300;
  max-height: 320px;
  overflow-y: auto;
  min-width: 340px;
  width: max-content;
}

.ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.1s;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--gray-50); }

.ac-item__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.ac-icon { color: var(--gray-400); flex-shrink: 0; }

.ac-item__text { min-width: 0; }
.ac-item__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-item__sub {
  font-size: 0.78rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-item__code {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
  margin-left: 1rem;
}

/* Clear button inside input */
.ac-clear {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none;
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 5;
}
.ac-clear:hover { background: var(--gray-300); }


/* ============================================================
   SEAT MAP
   ============================================================ */

.seat-map { max-width: 400px; margin: 0 auto; }
.seat-cabin { margin-bottom: 2rem; }
.seat-cabin__title { text-align: center; font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.seat-row { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 4px; }
.seat-row__num { width: 24px; font-size: 0.7rem; color: var(--gray-500); text-align: center; }
.seat-aisle { width: 24px; }
.seat-box {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-300);
  border-radius: 4px 4px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  color: var(--gray-600);
}
.seat-box:hover:not(:disabled):not(.seat-box--occupied) { border-color: var(--blue); background: var(--blue-light); }
.seat-box--available { background: #e8f5e9; border-color: #a5d6a7; color: #2e7d32; }
.seat-box--selected { background: var(--blue) !important; border-color: var(--blue) !important; color: #fff !important; }
.seat-box--occupied { background: var(--gray-100); border-color: var(--gray-200); color: var(--gray-300); cursor: not-allowed; }
.seat-box--extra { background: #fff3e0; border-color: #ffcc80; color: #e65100; }
.seat-box--empty { visibility: hidden; }

.seat-legend { margin-top: 1.5rem; }
.seat-legend__items { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.seat-legend__item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--gray-600); }
.seat-legend__item .seat-box { width: 20px; height: 20px; font-size: 0; cursor: default; }

/* ============================================================
   2026 PRODUCT UPGRADE LAYER
   ============================================================ */

.zf-topbar {
  background: #07111f;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
}
.zf-topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 34px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.zf-topbar a {
  color: #ffc857;
  font-weight: 700;
  text-decoration: none;
}
.zf-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.zf-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.zf-footer-badges span,
.mini-tags em {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-style: normal;
  font-size: 0.72rem;
}

.home-hero__kicker {
  color: #ffc857;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}
.search-tabs {
  flex-wrap: wrap;
}
.search-tab:not(.active):not(.search-tab--filled):hover {
  background: var(--gray-200);
  color: var(--gray-900);
}
.sf-outlined.is-disabled {
  background: var(--gray-100);
  opacity: 0.7;
}

.zf-command-strip {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.zf-command-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.zf-command-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.75rem;
  align-items: center;
  color: var(--text);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.95rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.zf-command-tile:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.zf-command-tile__icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}
.zf-command-tile strong { font-size: 0.92rem; }
.zf-command-tile small { color: var(--text-muted); line-height: 1.35; }

.section-header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.section-header--compact {
  margin: 2rem 0 1rem;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--navy);
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,31,0.9), rgba(7,17,31,0.62), rgba(7,17,31,0.25));
}
.page-hero--tours { background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1800&q=75'); }
.page-hero--hotels { background-image: url('https://images.unsplash.com/photo-1521401830884-6c03c1c87ebb?auto=format&fit=crop&w=1800&q=75'); }
.page-hero--ai { background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1800&q=75'); }
.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 3rem));
  margin: 0 auto;
  transform: translateX(-240px);
}
.page-hero h1 {
  color: #fff;
  font-size: 2.45rem;
  line-height: 1.12;
  margin: 0 0 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  margin: 0;
}
.page-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.destination-spotlights {
  padding-top: 3rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.spotlight-card {
  position: relative;
  min-height: 250px;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 15%, rgba(0,0,0,0.78));
}
.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.spotlight-card:hover img { transform: scale(1.06); }
.spotlight-card span,
.spotlight-card strong {
  position: relative;
  z-index: 1;
}
.spotlight-card span {
  font-size: 0.78rem;
  color: #ffc857;
  font-weight: 800;
  text-transform: uppercase;
}
.spotlight-card strong {
  font-size: 1rem;
  line-height: 1.25;
  margin-top: 0.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.testimonial-card strong {
  display: block;
  color: var(--gray-900);
}
.testimonial-card span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.filter-pills,
.quick-chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-pill,
.quick-chip,
.link-button {
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--gray-700);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.filter-pill.active,
.quick-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.link-button {
  border: none;
  color: var(--blue);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.tour-grid,
.collection-grid,
.hotel-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.tour-card,
.collection-card,
.hotel-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tour-card__media,
.collection-card > img,
.hotel-card__media {
  height: 190px;
  position: relative;
  background: var(--gray-100);
}
.tour-card__media img,
.collection-card > img,
.hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 800;
  font-size: 0.72rem;
}
.tour-card__body,
.collection-card__body,
.hotel-card__body {
  padding: 1rem;
}
.tour-card__meta,
.tour-card__footer,
.hotel-card__top,
.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.tour-card__meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.tour-card h3,
.collection-card h3,
.hotel-card h3 {
  margin: 0.55rem 0;
  color: var(--gray-900);
}
.tour-card__highlights {
  margin: 0 0 1rem;
  padding-left: 1.05rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.tour-card__footer strong,
.collection-card strong,
.hotel-card strong {
  color: var(--blue);
  font-size: 1.2rem;
}
.tour-card__footer small {
  display: block;
  color: var(--text-muted);
}
.tour-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  background: #fff;
  color: var(--orange);
  font-size: 1.1rem;
  cursor: pointer;
}

.planning-band {
  background: #0d1b2f;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.planning-band h2 {
  color: #fff;
  margin: 0 0 0.7rem;
}
.planning-band p { color: rgba(255,255,255,0.76); }
.planning-band__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.planning-band__steps span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.8rem;
  font-weight: 700;
}

.search-shell {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.search-shell__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.search-shell__header h2 { margin: 0; }
.search-shell__header p { margin: 0.25rem 0 0; color: var(--text-muted); }
.hotel-search-grid {
  grid-template-columns: 2fr 1fr 1fr 0.8fr 0.9fr;
}
.quick-chip-row {
  margin-top: 1rem;
}
.collection-card__body span,
.hotel-card__body p {
  color: var(--text-muted);
  font-size: 0.86rem;
}
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.mini-tags em {
  border-color: var(--gray-200);
  color: var(--gray-700);
}
.hotel-card__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gray-500);
}

.checkout-grid--upgraded {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.checkout-summary-card {
  position: sticky;
  top: 92px;
}
.checkout-summary-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}
.checkout-summary-list span {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.65rem;
  background: var(--gray-50);
}
.checkout-tour-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.checkout-stepper {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.checkout-stepper span {
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.checkout-stepper span.active {
  background: var(--blue);
  color: #fff;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.75rem 0 1.5rem;
}
.addon-card {
  display: flex;
  gap: 0.65rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.8rem;
  background: var(--gray-50);
  cursor: pointer;
}
.addon-card input {
  margin-top: 0.2rem;
  accent-color: var(--blue);
}
.addon-card strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.9rem;
}
.addon-card small {
  display: block;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.15rem;
}

.tour-detail-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.tour-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,0.1), rgba(7,17,31,0.88));
}
.tour-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-detail-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.tour-detail-hero h1 {
  color: #fff;
  font-size: 2.65rem;
  max-width: 760px;
  margin: 0 0 0.75rem;
}
.tour-detail-hero p {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
}
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
  align-items: start;
}
.feature-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.1rem;
  color: var(--gray-700);
}
.tour-detail-steps {
  margin-top: 1rem;
}
.tour-detail-aside {
  position: sticky;
  top: 92px;
}
.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0;
}
.detail-list dt {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.detail-list dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 700;
}

.ai-workspace {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ai-sidebar h2 {
  margin-top: 0;
}
.prompt-stack {
  display: grid;
  gap: 0.65rem;
}
.prompt-stack button {
  text-align: left;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 8px;
  padding: 0.8rem;
  font-family: var(--font);
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
}
.prompt-stack button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.trip-board-preview {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--gray-200);
}
.trip-board-preview h3 { margin: 0 0 0.4rem; }
.trip-board-preview p { color: var(--text-muted); margin: 0 0 0.5rem; }
.ai-form .field.full {
  margin-top: 1rem;
}
.ai-form__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ai-empty-state {
  border: 1px dashed var(--gray-300);
  border-radius: 8px;
  padding: 1.2rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.ai-empty-state strong { color: var(--gray-900); }

.fr-toolbar,
.fr-layout {
  display: grid;
  gap: 1rem;
}
.fr-toolbar {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 1rem;
}
.fr-layout {
  grid-template-columns: 240px 1fr;
}
.fr-toolbar > div:first-child {
  grid-column: 1 / span 1;
}
.fr-toolbar h1 { margin: 0; }
.fr-toolbar p { margin: 0.25rem 0 0; color: var(--text-muted); font-size: 0.9rem; }
.fr-sort {
  justify-self: end;
  grid-column: 2;
}
.fr-filters {
  padding: 1rem;
  position: sticky;
  top: 86px;
  align-self: start;
}
.fr-filter-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.fr-filter-group:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fr-filter-group h2 {
  margin: 0;
  font-size: 1rem;
}
.fr-filter-group label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 800;
  text-transform: uppercase;
}
.fr-filter-group select,
.fr-filter-group input[type="range"] {
  width: 100%;
}
.fr-filter-note {
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.fr-card {
  position: relative;
  flex-wrap: wrap;
}
.fr-card[hidden] {
  display: none;
}
.fr-card__details-btn {
  display: block;
  margin: 0 auto 0.45rem;
  font-size: 0.76rem;
}
.fr-card__details {
  flex-basis: 100%;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.fr-card__details span {
  background: var(--gray-50);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.zf-toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 2000;
}
.zf-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card__actions,
.hotel-detail-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hotel-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}
.hotel-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.hotel-detail-hero h1 {
  font-size: 2.4rem;
  margin: 0.3rem 0 0.7rem;
}
.room-card-grid,
.saved-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.room-card,
.saved-itinerary-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.room-card h3,
.saved-itinerary-card h3 {
  margin: 0 0 0.45rem;
}
.room-card ul {
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.1rem;
}
.saved-itinerary-card span,
.saved-itinerary-card small {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.saved-itinerary-card p {
  color: var(--text-muted);
  line-height: 1.55;
}
.checkout-summary-list--strong span {
  background: rgba(37, 99, 235, 0.08);
  color: var(--navy);
}
.request-confirmation {
  border-color: rgba(16, 185, 129, 0.35);
  background: #ecfdf5;
  margin-bottom: 1rem;
}
.request-confirmation h2 {
  margin-top: 0;
}
.trip-request-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.trip-request-status {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.trip-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.request-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.request-timeline li {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--text-muted);
  background: #fff;
}
.request-timeline li.is-done {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}
.request-timeline li.is-current {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .page-hero__content {
    transform: none;
  }
  .tour-grid,
  .collection-grid,
  .hotel-result-grid,
  .spotlight-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hotel-search-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .zf-topbar { display: none; }
  .zf-command-strip__inner,
  .ai-workspace,
  .planning-band,
  .checkout-grid--upgraded,
  .tour-detail-grid,
  .hotel-detail-hero,
  .trip-request-grid,
  .fr-toolbar,
  .fr-layout {
    grid-template-columns: 1fr;
  }
  .trip-request-hero {
    flex-direction: column;
  }
  .fr-toolbar > div:first-child,
  .fr-sort {
    grid-column: auto;
    justify-self: stretch;
  }
  .fr-filters {
    position: static;
  }
  .section-header--split,
  .search-shell__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 430px;
  }
  .page-hero h1 {
    font-size: 1.85rem;
  }
  .zf-command-strip__inner,
  .tour-grid,
  .collection-grid,
  .hotel-result-grid,
  .spotlight-grid,
  .testimonial-grid,
  .hotel-search-grid,
  .planning-band__steps {
    grid-template-columns: 1fr;
  }
  .tour-card__footer,
  .hotel-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============================================================
   TRAVEL NEWS HUB + DESTINATION CARDS
   ============================================================ */

.travel-news-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 48%, #0d3d5c 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 0 3rem;
  margin-bottom: 0;
}
.travel-news-hero .section {
  padding-top: 0;
  padding-bottom: 0;
}
.travel-news-hero__eyebrow {
  color: rgba(147, 197, 253, 0.95);
  margin-bottom: 0.35rem;
}
.travel-news-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: #fff;
  line-height: 1.15;
}
.travel-news-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.travel-news-hero__lead strong {
  color: #fff;
  font-weight: 700;
}
.travel-news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
}
.travel-news-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
}
.travel-news-stat__value {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.travel-news-stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.travel-news-page {
  padding-top: 2.5rem;
}

.travel-news-wires {
  margin-bottom: 2.75rem;
}
.travel-news-wires__head {
  margin-bottom: 1.25rem;
}
.travel-news-wires__head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.travel-news-wires__sub {
  margin: 0;
  max-width: 48rem;
  font-size: 0.95rem;
}
.travel-news-wires__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.travel-news-wire {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.travel-news-wire:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.travel-news-wire__tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.travel-news-wire__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}
.travel-news-wire__blurb {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.travel-news-wire__link {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.35rem;
  text-decoration: none;
}
.travel-news-wire__link:hover {
  text-decoration: underline;
}

.travel-news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.travel-news-toolbar__title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}
.travel-news-toolbar__hint {
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
}
.travel-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 100%;
}
.travel-news-filter {
  appearance: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.travel-news-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.travel-news-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.travel-news-live-region {
  font-size: 0.82rem;
  margin: 0 0 1rem;
}

.travel-news-foot {
  margin-top: 2.5rem;
}
.travel-news-foot__cta {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.travel-news-alt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.zf-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--blue-light);
  color: var(--blue);
  margin-right: 0.35rem;
}
.zf-chip--muted {
  background: var(--gray-100);
  color: var(--gray-600);
}

.zf-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.35rem;
}
.zf-dest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.zf-dest-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.zf-dest-card.is-hidden {
  display: none;
}
.zf-dest-card__media {
  position: relative;
  aspect-ratio: 320 / 200;
  background: linear-gradient(145deg, var(--gray-100), var(--gray-200));
  overflow: hidden;
}
.zf-dest-card__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zf-dest-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.zf-dest-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}
.zf-dest-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.zf-dest-card__pulse {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--navy-mid);
  background: rgba(21, 101, 192, 0.06);
  border-left: 3px solid var(--blue);
  padding: 0.45rem 0.6rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.zf-dest-card__pulse-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.15rem;
}
.zf-dest-card__summary {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.zf-dest-card__intel {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--gray-700);
}
.zf-dest-card__intel-label {
  font-weight: 600;
  color: var(--gray-800);
}
.zf-dest-card__intel--loading .zf-dest-card__intel-skel {
  color: var(--text-muted);
  font-style: italic;
  animation: zf-intel-pulse 1.2s ease-in-out infinite;
}
@keyframes zf-intel-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.zf-dest-card__intel-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.zf-dest-card__actions {
  margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .travel-news-hero__stats {
    grid-template-columns: 1fr;
  }
  .travel-news-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .travel-news-filter {
    flex: 0 0 auto;
  }
}
