/* Basic styling to match the provided header + home page screenshots */

:root {
  /* Yalina Group — logo-aligned (royal blue + gold) */
  --brand-blue: #1e52c4;
  --brand-blue-mid: #164a9e;
  --brand-blue-dark: #0f3570;
  --brand-blue-light: #4a7fd9;
  --brand-blue-soft: #e8f0fc;
  --brand-gold: #e6b012;
  --brand-gold-dark: #c2940a;
  --nav-hover-bg: rgba(230, 176, 18, 0.18);
  --nav-active-bg: rgba(30, 82, 196, 0.14);
  --text: #1a2744;
  --text-muted: #5c6b7a;
  /* Fluid horizontal padding (public site + agent pages using .page-container) */
  --layout-gutter: clamp(14px, 4.5vw, 28px);
  /* Sticky header */
  --header-surface: rgba(255, 255, 255, 0.9);
  --header-border: rgba(30, 82, 196, 0.11);
  --header-shadow: 0 4px 28px rgba(15, 53, 112, 0.08);
  --nav-focus: 0 0 0 3px rgba(30, 82, 196, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 58px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-surface);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  padding: 4px 6px 4px 2px;
  margin: -4px -6px -4px -2px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand:hover {
  background: rgba(30, 82, 196, 0.06);
}

.brand:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus);
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--brand-blue-dark);
}

.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 999px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.nav-link i {
  color: var(--nav-icon, var(--brand-blue));
  font-size: 13px;
  opacity: 0.9;
  width: 1.1em;
  text-align: center;
  transition: color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

/* Per-item Font Awesome icon colours (multi-colour nav) */
.nav-link--home {
  --nav-icon: #2563eb;
}
.nav-link--services {
  --nav-icon: #d97706;
}
.nav-link--flights {
  --nav-icon: #059669;
}
.nav-link--track {
  --nav-icon: #7c3aed;
}
.nav-link--about {
  --nav-icon: #0891b2;
}
.nav-link--contact {
  --nav-icon: #db2777;
}
.nav-link--bank {
  --nav-icon: #0d9488;
}
.nav-link--agent {
  --nav-icon: #4f46e5;
}
.nav-link--agent-login {
  --nav-icon: #9333ea;
}
.nav-link--logout {
  --nav-icon: #dc2626;
}

.nav-link:hover {
  background: var(--nav-hover-bg);
  color: var(--brand-blue-dark);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: var(--nav-active-bg);
  color: var(--brand-blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-link.is-active i {
  opacity: 1;
  filter: saturate(1.2) brightness(0.97);
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus);
}

@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .brand,
  .nav-toggle,
  .nav-toggle-bar {
    transition: none !important;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link.is-active i {
    filter: none;
  }
}

/* ---------------- Hero / Slider ---------------- */

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue-mid) 45%, var(--brand-blue-dark) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-overlay h1 {
  margin: 0 0 6px 0;
  font-size: 34px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-overlay p {
  margin: 0;
  font-size: 13px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  z-index: 3;
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.38);
}

.hero-arrow.hero-prev {
  left: 14px;
}

.hero-arrow.hero-next {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
}

/* ---------------- Ticker strip ---------------- */

.ticker {
  height: 36px;
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue) 55%, var(--brand-gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ticker--logos {
  height: 56px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ticker-track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-left: 14px;
  animation: ticker-move 18s linear infinite;
}

.ticker--logos .ticker-track {
  align-items: center;
  gap: 40px;
  padding-left: 40px;
  font-weight: 400;
  letter-spacing: normal;
}

.ticker-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------------- Product heading ---------------- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin: 40px 0 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
  border-radius: 2px;
  margin: 10px auto 0;
}

.product-grid {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 18px;
  min-height: 120px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.product-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .top-nav {
    gap: 12px;
  }

  .hero {
    height: min(72vh, 380px);
  }

  .hero-overlay h1 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-dots {
    bottom: 84px;
  }
}

/* Page layouts: services, fixed-departure, about, contact, bank-details */
.page-hero {
  min-height: min(280px, 52vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 7vw, 48px) clamp(14px, 4vw, 24px);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 50%, var(--brand-blue-dark) 100%);
  color: #fff;
}
.page-hero--departure {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 45%, var(--brand-blue-dark) 100%);
}
.page-hero--about {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 40%, var(--brand-blue-dark) 100%);
}
.page-hero--contact {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 50%, var(--brand-gold-dark) 100%);
}
.page-hero--bank {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 50%, var(--brand-blue-dark) 100%);
}
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 4.5vw + 0.5rem, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.page-hero-copy p {
  margin: 0 0 18px;
  font-size: clamp(0.875rem, 2.2vw + 0.4rem, 0.9375rem);
  line-height: 1.55;
  opacity: 0.95;
}
.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: opacity 180ms, transform 180ms;
}
.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.page-section {
  padding: 48px 0;
  background: #fff;
}
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  width: 100%;
  box-sizing: border-box;
}
.section-title--left { text-align: left; }
.section-title--tight { margin-bottom: 14px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.info-card {
  padding: 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.06);
}
.info-card--soft {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.info-icon i { font-size: 20px; color: #fff; }
.info-icon--orange { background: #f97316; }
.info-icon--green { background: #16a34a; }
.info-icon--blue { background: #0ea5e9; }
.info-icon--purple { background: #8b5cf6; }
.info-icon--visa { background: #1a56db; }
.info-icon--shield { background: #6d28d9; }
.info-card h3 { margin: 0 0 6px; font-size: 16px; }
.info-card p { margin: 0; font-size: 13px; color: #64748b; }
.search-card {
  max-width: 380px;
  margin: 20px auto 0;
  padding: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.search-row { margin-bottom: 14px; }
.search-row label { display: block; font-size: 12px; margin-bottom: 4px; opacity: 0.9; }
.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
}
.form-control::placeholder { color: rgba(255,255,255,0.6); }
.search-card .btn { margin-top: 8px; }
.timeline { display: flex; flex-direction: column; gap: 24px; }
.timeline-item { display: flex; gap: 18px; align-items: flex-start; }
.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.timeline-body h3 { margin: 0 0 4px; font-size: 16px; }
.timeline-body p { margin: 0; font-size: 14px; color: #64748b; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.about-card { padding: 24px; background: #f8fafc; border-radius: 14px; }
.lead { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: #475569; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.checklist i { color: var(--brand-gold-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 20px; background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)); color: #fff; border-radius: 14px; text-align: center; }
.stat-num { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 12px; opacity: 0.9; }
.team-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.team-card { padding: 24px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; text-align: center; }
.avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin: 0 auto 12px; }
.team-card h3 { margin: 0 0 8px; font-size: 15px; }
.team-card p { margin: 0; font-size: 13px; color: #64748b; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row label { display: block; font-size: 12px; margin-bottom: 4px; color: #475569; }
.form-row .form-control { background: #fff; color: #1f2937; border: 1px solid #e2e8f0; }
.form-row .form-control::placeholder { color: #94a3b8; }
.contact-form .btn { align-self: flex-start; }
.contact-ref-banner {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #1e40af;
}
.bank-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 28px; }
.bank-card { padding: 20px; background: #f8fafc; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; }
.bank-card-title { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #64748b; margin-bottom: 8px; }
.bank-card-title i { color: var(--brand-blue); }
.bank-card-value { font-size: 16px; font-weight: 700; color: #1f2937; }
.bank-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.bank-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bank-table th, .bank-table td { padding: 12px 16px; border: 1px solid #e2e8f0; text-align: left; }
.bank-table th { background: #f1f5f9; font-weight: 700; }
.note { padding: 12px 16px; background: #fef3c7; border-radius: 8px; font-size: 13px; color: #92400e; }

/* Fixed departure — Google Sheet flights table */
.page-section--flights {
  background: #f1f5f9;
  padding-top: 40px;
  padding-bottom: 48px;
}
.fd-table-heading {
  margin-bottom: 20px !important;
}
.fd-sheet-error {
  color: #b91c1c;
  font-size: 14px;
  margin: 0 0 10px;
}
.fd-sheet-hint {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  max-width: 720px;
}
.fd-sheet-source {
  margin: 14px 0 0;
  font-size: 12px;
  color: #64748b;
}
.fd-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  background: #fff;
}
.fd-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 13px;
}
.fd-table thead th {
  background: var(--brand-blue-dark);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--brand-blue-dark);
  white-space: nowrap;
}
.fd-table tbody td {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.fd-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.fd-table tbody tr:nth-child(odd) {
  background: #fff;
}
.fd-btn-book {
  display: inline-block;
  padding: 8px 18px;
  background: var(--brand-gold);
  color: var(--brand-blue-dark) !important;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fd-btn-book:hover {
  background: var(--brand-gold-dark);
  color: #0f172a !important;
}

/* Fixed Departure page — extra polish */
.page--departure .page-hero--departure {
  min-height: 320px;
  padding: 56px 18px 48px;
}
.page--departure .page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 920px;
}
.page--departure .page-hero-copy {
  max-width: 560px;
}
.page--departure .page-hero-copy h1 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.02em;
}
.page-section--flights .fd-table-heading {
  position: relative;
  padding-bottom: 12px;
}
.page-section--flights .fd-table-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
  border-radius: 2px;
}
.fd-table-wrap {
  border: 1px solid #e2e8f0;
}
.fd-table tbody tr {
  transition: background-color 0.15s ease;
}
.fd-table tbody tr:hover {
  background: #eff6ff !important;
}
.fd-table tbody td:nth-child(9) {
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}
.fd-table tbody td {
  vertical-align: middle;
}
@media (max-width: 768px) {
  .page--departure .page-hero-inner {
    gap: 22px;
  }
  .page-section--flights {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-section--flights .page-container {
    padding-left: 0;
    padding-right: 0;
  }
  .fd-table-wrap {
    border-radius: 8px;
    margin-left: -4px;
    margin-right: -4px;
    width: calc(100% + 8px);
  }
}
.page--departure .page-section:not(.page-section--flights) .timeline-dot {
  background: var(--brand-blue-mid);
}
.page--departure .page-section:not(.page-section--flights) {
  background: #fff;
}

.fd-airline-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
}
.fd-airline-logo {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.fd-airline-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 10em;
}

.fd-airline-fallback {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* ========== Mobile & responsive (sitewide) ========== */

html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

img,
video {
  max-width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(30, 82, 196, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-blue-soft) 100%);
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(30, 82, 196, 0.45);
  box-shadow: 0 4px 14px rgba(30, 82, 196, 0.14);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus), 0 2px 10px rgba(30, 82, 196, 0.1);
}

.nav-toggle-bar {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--brand-blue-dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    min-height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
    gap: 10px;
  }

  .site-header.nav-open {
    background: #ffffff;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    height: 26px;
    max-height: 36px;
    width: auto;
  }

  .brand-text {
    font-size: clamp(13px, 3.5vw, 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
  }

  .top-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-basis: 100%;
    gap: 4px;
    padding: 12px 0 14px;
    margin: 4px 0 0;
    border-top: 1px solid var(--header-border);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 0 0 14px 14px;
  }

  .site-header.nav-open .top-nav {
    display: flex;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 14px 14px;
    min-height: 48px;
    font-size: 14px;
    border-radius: 12px;
    white-space: normal;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link i {
    width: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: min(65vh, 360px);
  }

  .hero-overlay {
    padding: 0 16px;
    width: calc(100% - 32px);
  }

  .hero-overlay h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-overlay p {
    font-size: 13px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-dots {
    bottom: 72px;
  }

  .ticker--logos {
    height: 48px;
  }

  .ticker-logo {
    height: 32px;
    max-width: 140px;
  }

  .section-title {
    font-size: clamp(18px, 4.5vw, 22px);
    margin: 28px 0 14px;
  }

  .container,
  .page-container {
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  }

  .page-hero {
    min-height: 220px;
    padding-top: 36px;
    padding-bottom: 36px;
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  }

  .page-hero-copy h1 {
    font-size: clamp(22px, 5.5vw, 28px) !important;
  }

  .page-hero-copy p {
    font-size: 14px;
  }

  .page-section {
    padding: 32px 0;
  }

  .footer-inner {
    padding: 0 14px;
  }

  .site-footer {
    padding: 36px 0 20px;
  }

  .fd-table {
    font-size: 12px;
    min-width: 880px;
  }

  .fd-table thead th,
  .fd-table tbody td {
    padding: 10px 8px;
  }

  .bank-table {
    font-size: 12px;
  }

  .bank-table th,
  .bank-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 8px 10px;
  }

  .brand-text {
    max-width: 42vw;
  }

  .product-card {
    padding: 16px 14px;
  }

  .hero-arrow.hero-prev {
    left: 8px;
  }

  .hero-arrow.hero-next {
    right: 8px;
  }
}

/* ---------------- OUR PRODUCT (icons + cards) ---------------- */
/* Overrides to match the screenshot card grid and icon styling */

.product-grid {
  padding-bottom: 70px;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 24px 18px;
  min-height: 240px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.product-card h3 {
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.product-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 1;
  color: #6b7280;
}

.product-icon {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.product-icon i {
  font-size: 26px;
}

.product-icon--flight {
  background: #fff7ed;
}
.product-icon--flight i {
  color: #f97316;
}

.product-icon--hotel {
  background: #dcfce7;
}
.product-icon--hotel i {
  color: #16a34a;
}

.product-icon--bus {
  background: #e0f2fe;
}
.product-icon--bus i {
  color: #3b82f6;
}

.product-icon--train {
  background: #f3e8ff;
}
.product-icon--train i {
  color: #8b5cf6;
}

.product-icon--visa {
  background: #eff6ff;
}
.product-icon--visa i {
  color: #2563eb;
}

.product-icon--insurance {
  background: #ede9fe;
}
.product-icon--insurance i {
  color: #6d28d9;
}

.product-icon--pancard {
  background: #ecfeff;
}
.product-icon--pancard i {
  color: #0ea5e9;
}

.product-icon--holiday {
  background: #fffbeb;
}
.product-icon--holiday i {
  color: #f59e0b;
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------------- Footer ---------------- */

.site-footer {
  background-color: var(--brand-blue-dark);
  color: #e5e7eb;
  padding: 52px 0 26px;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 8px
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-col {
  min-width: 0;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #f9fafb;
  font-weight: 800;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.3;
}

.footer-item i {
  color: var(--brand-gold);
  margin-top: 2px;
}

.footer-item--address span {
  display: inline-block;
}

.footer-link {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
  text-decoration: none;
  margin: 8px 0;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e7eb;
  text-decoration: none;
}

.social-icon i {
  font-size: 13px;
}

.social-icon:hover {
  background: rgba(230, 176, 18, 0.25);
  color: #fff;
}

.footer-payments {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #e5e7eb;
}

.payment-pill i {
  font-size: 14px;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.85);
}

@media (max-width: 980px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Basic styling to match the provided header + home page screenshots */

:root {
  /* Yalina Group — logo-aligned (royal blue + gold) */
  --brand-blue: #1e52c4;
  --brand-blue-mid: #164a9e;
  --brand-blue-dark: #0f3570;
  --brand-blue-light: #4a7fd9;
  --brand-blue-soft: #e8f0fc;
  --brand-gold: #e6b012;
  --brand-gold-dark: #c2940a;
  --nav-hover-bg: rgba(230, 176, 18, 0.18);
  --nav-active-bg: rgba(30, 82, 196, 0.14);
  --text: #1a2744;
  --text-muted: #5c6b7a;
  /* Fluid horizontal padding (public site + agent pages using .page-container) */
  --layout-gutter: clamp(14px, 4.5vw, 28px);
  /* Sticky header */
  --header-surface: rgba(255, 255, 255, 0.9);
  --header-border: rgba(30, 82, 196, 0.11);
  --header-shadow: 0 4px 28px rgba(15, 53, 112, 0.08);
  --nav-focus: 0 0 0 3px rgba(30, 82, 196, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 58px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-surface);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  padding: 4px 6px 4px 2px;
  margin: -4px -6px -4px -2px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand:hover {
  background: rgba(30, 82, 196, 0.06);
}

.brand:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus);
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--brand-blue-dark);
}

.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 999px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.nav-link i {
  color: var(--nav-icon, var(--brand-blue));
  font-size: 13px;
  opacity: 0.9;
  width: 1.1em;
  text-align: center;
  transition: color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

/* Per-item Font Awesome icon colours (multi-colour nav) */
.nav-link--home {
  --nav-icon: #2563eb;
}
.nav-link--services {
  --nav-icon: #d97706;
}
.nav-link--flights {
  --nav-icon: #059669;
}
.nav-link--track {
  --nav-icon: #7c3aed;
}
.nav-link--about {
  --nav-icon: #0891b2;
}
.nav-link--contact {
  --nav-icon: #db2777;
}
.nav-link--bank {
  --nav-icon: #0d9488;
}
.nav-link--agent {
  --nav-icon: #4f46e5;
}
.nav-link--agent-login {
  --nav-icon: #9333ea;
}
.nav-link--logout {
  --nav-icon: #dc2626;
}

.nav-link:hover {
  background: var(--nav-hover-bg);
  color: var(--brand-blue-dark);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: var(--nav-active-bg);
  color: var(--brand-blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-link.is-active i {
  opacity: 1;
  filter: saturate(1.2) brightness(0.97);
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus);
}

@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .brand,
  .nav-toggle,
  .nav-toggle-bar {
    transition: none !important;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link.is-active i {
    filter: none;
  }
}

/* ---------------- Hero / Slider ---------------- */

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue-mid) 45%, var(--brand-blue-dark) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-overlay h1 {
  margin: 0 0 6px 0;
  font-size: 34px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-overlay p {
  margin: 0;
  font-size: 13px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  z-index: 3;
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.38);
}

.hero-arrow.hero-prev {
  left: 14px;
}

.hero-arrow.hero-next {
  right: 14px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
}

/* ---------------- Ticker strip ---------------- */

.ticker {
  height: 36px;
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue) 55%, var(--brand-gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ticker--logos {
  height: 56px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ticker-track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-left: 14px;
  animation: ticker-move 18s linear infinite;
}

.ticker--logos .ticker-track {
  align-items: center;
  gap: 40px;
  padding-left: 40px;
  font-weight: 400;
  letter-spacing: normal;
}

.ticker-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------------- Product heading ---------------- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin: 40px 0 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
  border-radius: 2px;
  margin: 10px auto 0;
}

.product-grid {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 18px;
  min-height: 120px;
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.product-card p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .top-nav {
    gap: 12px;
  }

  .hero {
    height: min(72vh, 380px);
  }

  .hero-overlay h1 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-dots {
    bottom: 84px;
  }
}

/* Page layouts: services, fixed-departure, about, contact, bank-details */
.page-hero {
  min-height: min(280px, 52vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 7vw, 48px) clamp(14px, 4vw, 24px);
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 50%, var(--brand-blue-dark) 100%);
  color: #fff;
}
.page-hero--departure {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 45%, var(--brand-blue-dark) 100%);
}
.page-hero--about {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 40%, var(--brand-blue-dark) 100%);
}
.page-hero--contact {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 50%, var(--brand-gold-dark) 100%);
}
.page-hero--bank {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 50%, var(--brand-blue-dark) 100%);
}
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 4.5vw + 0.5rem, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.page-hero-copy p {
  margin: 0 0 18px;
  font-size: clamp(0.875rem, 2.2vw + 0.4rem, 0.9375rem);
  line-height: 1.55;
  opacity: 0.95;
}
.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: opacity 180ms, transform 180ms;
}
.btn-primary {
  background: #fff;
  color: var(--brand-blue);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.page-section {
  padding: 48px 0;
  background: #fff;
}
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  width: 100%;
  box-sizing: border-box;
}
.section-title--left { text-align: left; }
.section-title--tight { margin-bottom: 14px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.info-card {
  padding: 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.06);
}
.info-card--soft {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.info-icon i { font-size: 20px; color: #fff; }
.info-icon--orange { background: #f97316; }
.info-icon--green { background: #16a34a; }
.info-icon--blue { background: #0ea5e9; }
.info-icon--purple { background: #8b5cf6; }
.info-icon--visa { background: #1a56db; }
.info-icon--shield { background: #6d28d9; }
.info-card h3 { margin: 0 0 6px; font-size: 16px; }
.info-card p { margin: 0; font-size: 13px; color: #64748b; }
.search-card {
  max-width: 380px;
  margin: 20px auto 0;
  padding: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.search-row { margin-bottom: 14px; }
.search-row label { display: block; font-size: 12px; margin-bottom: 4px; opacity: 0.9; }
.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
}
.form-control::placeholder { color: rgba(255,255,255,0.6); }
.search-card .btn { margin-top: 8px; }
.timeline { display: flex; flex-direction: column; gap: 24px; }
.timeline-item { display: flex; gap: 18px; align-items: flex-start; }
.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.timeline-body h3 { margin: 0 0 4px; font-size: 16px; }
.timeline-body p { margin: 0; font-size: 14px; color: #64748b; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.about-card { padding: 24px; background: #f8fafc; border-radius: 14px; }
.lead { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: #475569; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.checklist i { color: var(--brand-gold-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 20px; background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)); color: #fff; border-radius: 14px; text-align: center; }
.stat-num { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 12px; opacity: 0.9; }
.team-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.team-card { padding: 24px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; text-align: center; }
.avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin: 0 auto 12px; }
.team-card h3 { margin: 0 0 8px; font-size: 15px; }
.team-card p { margin: 0; font-size: 13px; color: #64748b; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row label { display: block; font-size: 12px; margin-bottom: 4px; color: #475569; }
.form-row .form-control { background: #fff; color: #1f2937; border: 1px solid #e2e8f0; }
.form-row .form-control::placeholder { color: #94a3b8; }
.contact-form .btn { align-self: flex-start; }
.contact-ref-banner {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #1e40af;
}
.bank-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 28px; }
.bank-card { padding: 20px; background: #f8fafc; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; }
.bank-card-title { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #64748b; margin-bottom: 8px; }
.bank-card-title i { color: var(--brand-blue); }
.bank-card-value { font-size: 16px; font-weight: 700; color: #1f2937; }
.bank-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.bank-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bank-table th, .bank-table td { padding: 12px 16px; border: 1px solid #e2e8f0; text-align: left; }
.bank-table th { background: #f1f5f9; font-weight: 700; }
.note { padding: 12px 16px; background: #fef3c7; border-radius: 8px; font-size: 13px; color: #92400e; }

/* Fixed departure — Google Sheet flights table */
.page-section--flights {
  background: #f1f5f9;
  padding-top: 40px;
  padding-bottom: 48px;
}
.fd-table-heading {
  margin-bottom: 20px !important;
}
.fd-sheet-error {
  color: #b91c1c;
  font-size: 14px;
  margin: 0 0 10px;
}
.fd-sheet-hint {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  max-width: 720px;
}
.fd-sheet-source {
  margin: 14px 0 0;
  font-size: 12px;
  color: #64748b;
}
.fd-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  background: #fff;
}
.fd-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 13px;
}
.fd-table thead th {
  background: var(--brand-blue-dark);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--brand-blue-dark);
  white-space: nowrap;
}
.fd-table tbody td {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.fd-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.fd-table tbody tr:nth-child(odd) {
  background: #fff;
}
.fd-btn-book {
  display: inline-block;
  padding: 8px 18px;
  background: var(--brand-gold);
  color: var(--brand-blue-dark) !important;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.fd-btn-book:hover {
  background: var(--brand-gold-dark);
  color: #0f172a !important;
}

/* Fixed Departure page — extra polish */
.page--departure .page-hero--departure {
  min-height: 320px;
  padding: 56px 18px 48px;
}
.page--departure .page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 920px;
}
.page--departure .page-hero-copy {
  max-width: 560px;
}
.page--departure .page-hero-copy h1 {
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.02em;
}
.page-section--flights .fd-table-heading {
  position: relative;
  padding-bottom: 12px;
}
.page-section--flights .fd-table-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-gold));
  border-radius: 2px;
}
.fd-table-wrap {
  border: 1px solid #e2e8f0;
}
.fd-table tbody tr {
  transition: background-color 0.15s ease;
}
.fd-table tbody tr:hover {
  background: #eff6ff !important;
}
.fd-table tbody td:nth-child(9) {
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}
.fd-table tbody td {
  vertical-align: middle;
}
@media (max-width: 768px) {
  .page--departure .page-hero-inner {
    gap: 22px;
  }
  .page-section--flights {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-section--flights .page-container {
    padding-left: 0;
    padding-right: 0;
  }
  .fd-table-wrap {
    border-radius: 8px;
    margin-left: -4px;
    margin-right: -4px;
    width: calc(100% + 8px);
  }
}
.page--departure .page-section:not(.page-section--flights) .timeline-dot {
  background: var(--brand-blue-mid);
}
.page--departure .page-section:not(.page-section--flights) {
  background: #fff;
}

.fd-airline-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
}
.fd-airline-logo {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.fd-airline-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 10em;
}

.fd-airline-fallback {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* ========== Mobile & responsive (sitewide) ========== */

html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

img,
video {
  max-width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(30, 82, 196, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-blue-soft) 100%);
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(30, 82, 196, 0.45);
  box-shadow: 0 4px 14px rgba(30, 82, 196, 0.14);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--nav-focus), 0 2px 10px rgba(30, 82, 196, 0.1);
}

.nav-toggle-bar {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--brand-blue-dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    min-height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
    gap: 10px;
  }

  .site-header.nav-open {
    background: #ffffff;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    height: 26px;
    max-height: 36px;
    width: auto;
  }

  .brand-text {
    font-size: clamp(13px, 3.5vw, 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
  }

  .top-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-basis: 100%;
    gap: 4px;
    padding: 12px 0 14px;
    margin: 4px 0 0;
    border-top: 1px solid var(--header-border);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 0 0 14px 14px;
  }

  .site-header.nav-open .top-nav {
    display: flex;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 14px 14px;
    min-height: 48px;
    font-size: 14px;
    border-radius: 12px;
    white-space: normal;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link i {
    width: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: min(65vh, 360px);
  }

  .hero-overlay {
    padding: 0 16px;
    width: calc(100% - 32px);
  }

  .hero-overlay h1 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-overlay p {
    font-size: 13px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-dots {
    bottom: 72px;
  }

  .ticker--logos {
    height: 48px;
  }

  .ticker-logo {
    height: 32px;
    max-width: 140px;
  }

  .section-title {
    font-size: clamp(18px, 4.5vw, 22px);
    margin: 28px 0 14px;
  }

  .container,
  .page-container {
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  }

  .page-hero {
    min-height: 220px;
    padding-top: 36px;
    padding-bottom: 36px;
    padding-left: max(var(--layout-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--layout-gutter), env(safe-area-inset-right, 0px));
  }

  .page-hero-copy h1 {
    font-size: clamp(22px, 5.5vw, 28px) !important;
  }

  .page-hero-copy p {
    font-size: 14px;
  }

  .page-section {
    padding: 32px 0;
  }

  .footer-inner {
    padding: 0 14px;
  }

  .site-footer {
    padding: 36px 0 20px;
  }

  .fd-table {
    font-size: 12px;
    min-width: 880px;
  }

  .fd-table thead th,
  .fd-table tbody td {
    padding: 10px 8px;
  }

  .bank-table {
    font-size: 12px;
  }

  .bank-table th,
  .bank-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 8px 10px;
  }

  .brand-text {
    max-width: 42vw;
  }

  .product-card {
    padding: 16px 14px;
  }

  .hero-arrow.hero-prev {
    left: 8px;
  }

  .hero-arrow.hero-next {
    right: 8px;
  }
}
