/* ==========================================================================
   Fly Travel Hub — style.css
   Vibrant Tropical / Modern · Teal #0d9488 · Sunset Orange #f97316
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-primary:         #0d9488;
  --color-primary-dark:    #0f766e;
  --color-primary-light:   #14b8a6;
  --color-secondary:       #f97316;
  --color-secondary-dark:  #ea6c08;
  --color-secondary-light: #fb923c;
  --color-tertiary:        #06b6d4;
  --color-bg-light:        #f0fdfa;
  --color-text:            #134e4a;
  --color-heading:         #134e4a;

  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-size-base: 1.0625rem;
  --line-height-base: 1.65;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 2px 8px rgba(13,148,136,0.10);
  --shadow-md: 0 4px 16px rgba(13,148,136,0.14);
  --shadow-lg: 0 8px 32px rgba(13,148,136,0.18);

  --section-pad: 92px;
  --hero-header-offset: 122px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: #ffffff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
}
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; }
.text-brand { color: var(--color-primary) !important; }
.text-white-75 { color: rgba(255,255,255,0.78); }
.container { max-width: 1340px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: var(--radius-sm); transition: all .25s ease; }
.btn:focus-visible { outline: 3px solid rgba(13,148,136,0.4); outline-offset: 2px; }

.btn-brand {
  background: var(--color-primary); color: #fff; border: 1px solid var(--color-primary);
}
.btn-brand:hover, .btn-brand:focus { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }

.btn-accent {
  background: var(--color-secondary); color: #fff; border: 1px solid var(--color-secondary);
}
.btn-accent:hover, .btn-accent:focus { background: var(--color-secondary-dark); border-color: var(--color-secondary-dark); color: #fff; }

.btn-outline-brand { border: 1px solid var(--color-primary); color: var(--color-primary); }
.btn-outline-brand:hover { background: var(--color-primary); color: #fff; }

/* ---------- Top bar ---------- */
.topbar { background: var(--color-primary); padding: 7px 0; font-size: .875rem; }
.topbar-link { color: #fff; }
.topbar-link:hover { color: rgba(255,255,255,0.85); }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  z-index: 1030;
}
.main-nav { align-items: center; gap: 6px; }
.nav-item-link {
  position: relative;
  color: var(--color-text);
  font-weight: 500;
  padding: 8px 14px;
}
.nav-item-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-item-link:hover::after,
.nav-item-link.active::after { transform: scaleX(1); }
.nav-item-link.active { color: var(--color-primary); }

.mobile-nav a { color: var(--color-text); font-weight: 500; padding: 10px 6px; border-radius: var(--radius-sm); }
.mobile-nav a:hover { background: var(--color-bg-light); color: var(--color-primary); }
.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ==========================================================================
   HERO — compact banner with slim overlaid search card (per reference SS)
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  min-height: 140px;
  height: min(90vh, calc(100svh - var(--hero-header-offset) - 200px));
  max-height: min(680px, calc(100svh - var(--hero-header-offset) - 240px));
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Search card — slim, glassmorphism, pulled down over next section */
.search-wrap { position: relative; z-index: 3; transform: translateY(50%); margin-top: -12px; }
.hero { margin-bottom: 150px; } /* space consumed by the pulled-down card */

.search-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px 20px;
}
.search-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.search-title {
  font-size: 1.05rem;
  margin: 0;
  color: var(--color-primary-dark);
}
.trip-toggle { display: inline-flex; background: var(--color-bg-light); border-radius: 999px; padding: 3px; }
.trip-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.trip-toggle label {
  padding: 5px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--color-text);
  cursor: pointer;
  transition: all .2s ease;
}
.trip-toggle input:checked + label { background: var(--color-secondary); color: #fff; }
.trip-toggle input:focus-visible + label { outline: 2px solid var(--color-primary); }

.sf-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin: 0 0 3px 2px;
}
.sf-opt { color: #94a3b8; text-transform: none; letter-spacing: 0; }

.search-card .form-control,
.search-card .form-select,
.search-card .pax-toggle {
  border: 1px solid #d7e5e2;
  border-radius: var(--radius-sm);
  font-size: .925rem;
  padding: 8px 12px;
  height: 42px;
  background-color: #fff;
  color: var(--color-text);
}
.search-card .form-control:focus,
.search-card .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.14);
}
.search-row + .search-row { margin-top: 8px; }
.search-btn { height: 42px; font-size: .95rem; border-radius: var(--radius-sm); }

.direct-check { display: flex; align-items: center; height: 42px; margin: 0; padding-left: 1.6em; }
.direct-check .form-check-label { font-size: .875rem; font-weight: 500; }
.form-check-input:checked { background-color: var(--color-primary); border-color: var(--color-primary); }

/* Passenger dropdown */
.pax-toggle { width: 100%; text-align: left; cursor: pointer; }
.pax-menu { min-width: 270px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid #e2f0ee; }
.pax-row { padding: 8px 0; }
.pax-row + .pax-row { border-top: 1px solid #eef6f5; }
.pax-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  transition: all .15s ease;
}
.pax-btn:hover { background: var(--color-primary); color: #fff; }
.pax-val { min-width: 22px; text-align: center; font-weight: 600; }

/* Select2 inside search card */
.select2-container--default .select2-selection--single {
  height: 42px;
  border: 1px solid #d7e5e2;
  border-radius: var(--radius-sm);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding-left: 12px;
  font-size: .925rem;
  color: var(--color-text);
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 40px; }
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.14);
}
.select2-dropdown { border: 1px solid #d7e5e2; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--color-primary);
}
.select2-container { width: 100% !important; z-index: 1060; }

/* Flatpickr accent */
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--color-primary); border-color: var(--color-primary);
}
.flatpickr-day.today { border-color: var(--color-secondary); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: var(--section-pad) 0; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.eyebrow-light { color: var(--color-secondary-light); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 12px; }
.section-lead { color: #4b6663; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- About ---------- */
.section-about { background: #fff; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; display: block; border-radius: var(--radius-lg); }
.stat-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-badge strong { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-primary); line-height: 1; }
.stat-badge span { font-size: .8rem; max-width: 140px; line-height: 1.3; }

.service-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; }
.service-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.service-row h6 { margin-bottom: 2px; font-size: 1rem; }
.service-row p { margin: 0; font-size: .95rem; color: #4b6663; }

/* ---------- Destinations (dark teal band) ---------- */
.section-destinations {
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, #0b5a52 55%, var(--color-primary) 100%);
}
.section-destinations .destinations-lead {
  color: #fff !important;
}
.destinations-swiper { padding-bottom: 44px; }
.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  aspect-ratio: 4 / 3;
  transition: transform .3s ease;
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,148,136,0.85) 0%, rgba(13,148,136,0.05) 55%, transparent 100%);
}
.dest-info { position: absolute; left: 16px; bottom: 14px; z-index: 2; }
.dest-info h5 { color: #fff; margin: 0; font-size: 1.15rem; }
.dest-info span { color: rgba(255,255,255,0.85); font-size: .82rem; }

.destinations-swiper .swiper-button-prev,
.destinations-swiper .swiper-button-next {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(4px);
}
.destinations-swiper .swiper-button-prev::after,
.destinations-swiper .swiper-button-next::after { font-size: .95rem; font-weight: 700; }
.destinations-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.55); opacity: 1; }
.destinations-swiper .swiper-pagination-bullet-active { background: var(--color-secondary); }

/* ---------- Packages ---------- */
.section-packages { background: var(--color-bg-light); }
.package-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-media { aspect-ratio: 16 / 9; overflow: hidden; }
.package-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.package-card:hover .package-media img { transform: scale(1.05); }
.package-body { padding: 16px 18px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.package-body h5 { font-size: 1.02rem; margin: 0; }

/* ---------- Airlines ---------- */
.section-airlines { background: #fff; }
.airline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
}
.airline-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  background: #f8fbff;
  border: 1px solid #e4eef8;
  cursor: default;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.airline-logo:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-color: #c6daf5;
  background: #fff;
}
.airline-logo img {
  height: 46px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform .28s ease;
}
.airline-logo:hover img { transform: scale(1.05); }

/* ---------- Why (trust pillars) ---------- */
.section-why { background: linear-gradient(180deg, #fff 0%, var(--color-bg-light) 100%); }
.pillar-card {
  position: relative;
  background: var(--color-bg-light);
  border: 1px solid #d9f2ee;
  border-radius: var(--radius-md);
  padding: 28px 22px 22px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.pillar-card h5 { font-size: 1.05rem; }
.pillar-card p { font-size: .92rem; color: #4b6663; margin: 0; }

/* ---------- Comparison ---------- */
.section-compare { background: #fff; }
.compare-table-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.compare-table tbody td { padding: 13px 20px; font-size: .95rem; vertical-align: middle; }
.compare-table tbody tr:nth-child(even) { background: var(--color-bg-light); }
.cmp {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: .7rem;
  margin-right: 6px;
}
.cmp-check { background: rgba(13,148,136,0.14); color: var(--color-primary); }
.cmp-times { background: rgba(220,53,69,0.12); color: #dc3545; }
.cmp-dash  { background: rgba(100,116,139,0.14); color: #64748b; }

/* ---------- FAQ ---------- */
.section-faq { background: var(--color-bg-light); }
.faq-accordion { max-width: 860px; }
.faq-accordion .accordion-item {
  border: 1px solid #e2f0ee;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: border-color .25s ease;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) { border-left-color: var(--color-primary); }
.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .98rem;
  color: var(--color-heading);
  background: #fff;
  padding: 16px 20px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--color-primary); background: #fff; }
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .8rem;
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-accordion .accordion-body { font-size: .95rem; color: #4b6663; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #0f3d39; color: rgba(255,255,255,0.82); padding: 64px 0 0; }
.footer-text { font-size: .92rem; color: rgba(255,255,255,0.72); }
.footer-heading { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.72); font-size: .92rem; }
.footer-links a:hover { color: var(--color-secondary); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; }
.footer-contact i { color: var(--color-secondary); margin-top: 4px; }
.footer-contact span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--color-secondary); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.footer-social a:hover { background: var(--color-secondary); color: #fff; }
.footer-bottom { background: rgba(0,0,0,0.22); padding: 16px 0; color: rgba(255,255,255,0.55); }

/* ---------- Floating buttons ---------- */
.floating-btn {
  position: fixed;
  z-index: 1040;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all .3s ease;
}
.floating-top {
  right: 20px; bottom: 20px;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.floating-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-top:hover { background: var(--color-primary-dark); }
.floating-phone { left: 20px; bottom: 20px; background: var(--color-secondary); }
.floating-phone:hover { background: var(--color-secondary-dark); color: #fff; }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-tertiary) 100%);
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 8px auto 0; }
.page-hero .breadcrumb { justify-content: center; margin: 14px 0 0; }
.page-hero .breadcrumb a, .page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.8); font-size: .85rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Contact page */
.contact-card, .form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  height: 100%;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item .ci-icon {
  flex: 0 0 46px; width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-item h6 { margin: 0 0 2px; font-size: .95rem; }
.contact-item p, .contact-item a { margin: 0; font-size: .92rem; color: #4b6663; }

.form-card .form-label { font-weight: 600; font-size: .85rem; color: var(--color-primary-dark); }
.form-card .form-control, .form-card .form-select {
  border: 1px solid #d7e5e2;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.form-card .form-control:focus, .form-card .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.14);
}

/* Enquiry summary */
.enquiry-summary {
  background: var(--color-bg-light);
  border: 1px solid #d9f2ee;
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.enquiry-summary .es-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .92rem; border-bottom: 1px dashed #d0ebe6; }
.enquiry-summary .es-row:last-child { border-bottom: 0; }
.enquiry-summary .es-row span:first-child { color: #64748b; }
.enquiry-summary .es-row span:last-child { font-weight: 600; }

/* Legal pages */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 34px; }
.legal-content p, .legal-content li { font-size: .96rem; color: #3f5a57; }
.legal-updated { font-size: .82rem; color: #94a3b8; }

/* Error pages */
.error-page { padding: 110px 0; text-align: center; }
.error-page .error-code {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-tertiary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Thank-you */
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 34px;
  text-align: center;
}
.thanks-icon {
  width: 82px; height: 82px;
  border-radius: 50%;
  background: rgba(13,148,136,0.12);
  color: var(--color-primary);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* Alerts */
.alert-brand { background: var(--color-bg-light); border: 1px solid #cdeee8; color: var(--color-primary-dark); border-radius: var(--radius-sm); }

/* Enquiry modal */
.enquiry-modal { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); }
.enquiry-modal .modal-header { border-bottom: 1px solid #eef6f5; padding: 18px 22px; }
.enquiry-modal .modal-title { font-size: 1.1rem; color: var(--color-primary-dark); }
.enquiry-modal .form-label { font-size: .82rem; font-weight: 600; color: var(--color-primary-dark); margin-bottom: 3px; }
.enquiry-modal .form-control, .enquiry-modal .form-select { border: 1px solid #d7e5e2; border-radius: var(--radius-sm); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1279.98px) {
  .container { max-width: 1140px; }
}

@media (max-width: 991.98px) {
  :root { --section-pad: 72px; --hero-header-offset: 112px; }
  .search-wrap { transform: none; margin-top: 0; padding-bottom: 26px; }
  .hero { margin-bottom: 0; }
  .airline-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 56px; --hero-header-offset: 100px; }
  body { font-size: 1rem; }
  .hero { background: none; min-height: 0; height: auto; max-height: none; }
  .search-wrap { transform: none; margin-top: 0; padding-bottom: 0; }
  .search-wrap::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 0;
    height: auto;
    max-height: none;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
  }
  .search-card { padding: 16px 14px 18px; border-radius: var(--radius-lg); }
  .search-top { justify-content: center; text-align: center; }
  .stat-badge { left: 12px; bottom: 12px; padding: 10px 14px; }
  .compare-table thead th, .compare-table tbody td { padding: 11px 14px; font-size: .88rem; }
  .airline-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 16px 12px; gap: 10px; }
  .airline-logo { padding: 10px 8px; }
  .airline-logo img { height: 34px; }
  .floating-btn { width: 42px; height: 42px; }
  .mobile-call-btn { font-size: .74rem; padding: .28rem .45rem; gap: 5px; }
}

@media (max-width: 575.98px) {
  .search-row .col-6 { min-width: 100%; }
  .package-body { flex-direction: column; align-items: flex-start; }
  .package-body .btn { align-self: stretch; text-align: center; }
}
