:root {
  --hf-navy: #172845;
  --hf-navy-dark: #1c2d4c;
  --hf-yellow: #efbf00;
  --hf-yellow-dark: #f7b418;
  --hf-green: #1cb670;
  --hf-text: #383a40;
  --hf-muted: #64748b;
  --hf-white: #ffffff;
  --hf-border: #e2e8f0;
}

* { box-sizing: border-box; }

body {
  font-family: "Roboto", system-ui, sans-serif;
  color: var(--hf-text);
  background: #f5f5f5;
  margin: 0;
}

.hf-header-top {
  background: var(--hf-navy);
  color: #fff;
}

.hf-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 0;
}

.hf-site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.hf-site-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.hf-site-logo--header img {
  height: 52px;
  max-width: min(240px, 62vw);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.hf-site-logo--nav img {
  height: 44px;
  max-width: min(200px, 52vw);
}

.hf-site-logo--footer img {
  height: 58px;
  max-width: 220px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hf-brand-logo img {
  height: 52px;
  width: auto;
  max-width: min(240px, 62vw);
  object-fit: contain;
}

.hf-brand-logo i {
  color: var(--hf-yellow-dark);
  font-size: 1.5rem;
}

.hf-brand-accent { color: var(--hf-yellow-dark); }

.hf-badge {
  display: inline-block;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  color: #fff;
}

.hf-badge small { font-weight: 400; font-size: 0.55rem; }

.hf-badge-atol { background: #c9a227; }

.hf-badge-iata { background: #1a3a6e; border: 1px solid #4a6fa5; }

.hf-header-phone {
  color: var(--hf-yellow-dark);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.hf-header-phone:hover { color: var(--hf-yellow); }

.hf-header-hours {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.hf-main-nav {
  background: var(--hf-white);
  border-bottom: 1px solid #ddd;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1030;
}

.hf-nav-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem;
}

.hf-nav-menu .nav-link {
  color: var(--hf-text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.hf-nav-menu .nav-link:hover,
.hf-nav-menu .nav-link:focus {
  color: var(--hf-navy);
  background: #f0f0f0;
}

.hf-nav-menu .nav-link.active {
  background: var(--hf-yellow);
  color: #000;
  font-weight: 600;
}

.hf-main-nav .dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.35rem 0;
  margin-top: 0;
}

.hf-main-nav .dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.hf-main-nav .dropdown-item:hover {
  background: #f5f5f5;
  color: var(--hf-navy);
}

.hf-main-nav .navbar-toggler:focus {
  box-shadow: none;
}

.hf-nav-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hf-nav-brand {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
}

.hf-nav-brand img {
  height: 44px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.hf-nav-phone {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hf-navy);
  color: var(--hf-yellow);
  text-decoration: none;
  flex-shrink: 0;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.hf-nav-phone:hover {
  background: var(--hf-navy-dark);
  color: var(--hf-yellow);
}

/* Single hero section: large background images + search form centered in the middle */
.hf-hero-search {
  position: relative;
  min-height: min(800px, 92vh);
  margin-bottom: 0;
  overflow: hidden;
}

.hf-hero-search .hf-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hf-hero-search .hf-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 50, 0.2) 0%,
    rgba(0, 0, 50, 0.28) 38%,
    rgba(0, 0, 50, 0.42) 62%,
    rgba(0, 0, 50, 0.58) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hf-hero-layout {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  padding: 2.5rem clamp(1.25rem, 4vw, 4rem) 6.5rem;
  pointer-events: none;
}

.hf-hero-intro {
  pointer-events: auto;
  max-width: 34rem;
  color: #fff;
}

.hf-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-yellow);
}

.hf-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hf-hero-lead {
  margin: 0 0 1.35rem;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 32rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hf-hero-cta-primary {
  background: var(--hf-yellow);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
}

.hf-hero-cta-primary:hover {
  background: var(--hf-yellow-dark);
  color: #000;
}

.hf-hero-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hf-hero-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hf-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.hf-hero-trust i {
  color: var(--hf-yellow);
  margin-right: 0.4rem;
}

.hf-hero-form-wrap {
  pointer-events: auto;
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
}

/* Desktop: search panel left, intro content right */
@media (min-width: 992px) {
  .hf-hero-form-wrap {
    flex: 0 1 min(960px, 52vw);
    max-width: 960px;
    justify-content: flex-start;
    align-items: center;
    padding-right: clamp(1rem, 2vw, 2rem);
    z-index: 7;
  }

  .hf-hero-form-wrap .hf-search-section {
    width: 100%;
    max-width: 100%;
  }

  .hf-hero-intro {
    flex: 1 1 0;
    max-width: 34rem;
    margin-left: auto;
    align-self: center;
    z-index: 6;
  }

  .hf-hero-search .hf-search-section .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .hf-hero-search .hf-search-card {
    width: 100%;
  }

  .hf-hero-search .hf-price-strip {
    display: none;
  }

  .hf-hero-layout {
    padding-bottom: 2.5rem;
  }
}

.hf-banner {
  background: var(--hf-navy-dark);
  overflow: hidden;
  line-height: 0;
}

.hf-hero-carousel {
  max-height: none;
  height: 100%;
}

.hf-hero-carousel .carousel-inner {
  max-height: none;
  height: 100%;
}

.hf-hero-carousel .carousel-item {
  background: var(--hf-navy-dark);
}

.hf-hero-img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hf-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.hf-hero-carousel .carousel-indicators .active {
  background-color: var(--hf-yellow);
}

.hf-hero-carousel .carousel-control-prev,
.hf-hero-carousel .carousel-control-next {
  width: 8%;
  opacity: 0.85;
}

.hf-hero-carousel .carousel-control-prev-icon,
.hf-hero-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.hf-search-section {
  background: var(--hf-navy-dark);
  padding: 1.25rem 0 0;
  overflow: visible;
}

.hf-hero-search .hf-hero-carousel,
.hf-hero-search .hf-hero-carousel .carousel-inner {
  height: 100%;
  min-height: min(800px, 92vh);
  max-height: none;
}

.hf-hero-search .hf-hero-img {
  height: 100%;
  min-height: min(800px, 92vh);
  max-height: none;
}

.hf-hero-search .hf-search-section {
  position: static;
  display: block;
  margin-top: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
}

.hf-hero-search .hf-search-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hf-search-section .container {
  max-width: 1040px;
}

.hf-search-section .container,
.hf-compact-form,
.hf-form-row {
  overflow: visible;
}

.hf-search-card {
  background: var(--hf-white);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 1.1rem 1.25rem 1rem;
}

.hf-hero-search .hf-search-card {
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hf-search-card-header {
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--hf-border);
}

.hf-compact-form {
  padding-bottom: 0;
}

.hf-form-block {
  margin-bottom: 0.85rem;
}

.hf-form-block-route {
  margin-bottom: 0.75rem;
}

.hf-form-block-row2 {
  margin-bottom: 0.75rem;
}

.hf-form-row2-contact-note {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hf-navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hf-form-block-passengers,
.hf-form-block-contact {
  padding: 0.7rem 0.85rem 0.1rem;
  background: #f8fafc;
  border: 1px solid var(--hf-border);
  border-radius: 6px;
}

.hf-form-block-title {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--hf-navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hf-form-block-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--hf-muted);
  font-size: 0.75rem;
}

.hf-form-block-actions {
  margin-bottom: 0.65rem;
}

.hf-form-block-actions .hf-btn-search {
  height: 40px;
  font-size: 0.9375rem;
  border-radius: 6px;
}

.hf-search-card .hf-field-dark label,
.hf-search-card .hf-field-label-main {
  color: var(--hf-text);
}

.hf-search-card .hf-label-deals {
  color: var(--hf-muted);
}

.hf-search-card .hf-label-deals a {
  color: var(--hf-navy);
}

.hf-search-card .hf-label-deals a:hover {
  color: var(--hf-yellow-dark);
}

.hf-trip-toggle {
  display: inline-flex;
  background: #eef2f7;
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.hf-trip-toggle input { display: none; }

.hf-trip-toggle label {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hf-muted);
  margin: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hf-trip-toggle label:hover {
  color: var(--hf-text);
  background: rgba(255, 255, 255, 0.65);
}

.hf-trip-toggle input:checked + label {
  background: var(--hf-yellow);
  color: #000;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.hf-form-row {
  margin-top: 0;
}

@media (min-width: 992px) {
  .hf-form-row-route {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: end;
  }

  .hf-form-row-secondary {
    display: grid;
    grid-template-columns: 0.75fr 0.75fr 0.75fr 1.35fr 1.35fr;
    gap: 0.65rem;
    align-items: end;
  }

  .hf-form-row-passengers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    align-items: end;
  }

  .hf-form-row-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    align-items: end;
  }

  .hf-form-row-route > [class*="col"],
  .hf-form-row-secondary > [class*="col"],
  .hf-form-row-passengers > [class*="col"],
  .hf-form-row-contact > [class*="col"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex: none;
  }

  .hf-form-row-route.hf-one-way {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hf-field-dark {
  padding: 0;
  position: relative;
}

.hf-search-card .hf-field-dark label {
  color: var(--hf-text);
}

.hf-field-dark label {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.hf-input-wrap {
  position: relative;
  display: block;
}

.hf-input-wrap > i:first-child {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #5a6478;
  font-size: 0.95rem;
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}

.hf-input-wrap .form-control,
.hf-input-wrap .hf-passenger-btn {
  padding-left: 2.5rem;
  padding-right: 1.75rem;
}

.hf-field-dark .form-control,
.hf-field-dark .hf-passenger-btn,
.hf-field-dark .hf-date-input {
  border: 1px solid #b8c0cc;
  border-radius: 3px;
  font-size: 0.8125rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  height: 38px;
  background: #fff;
  color: #222;
  width: 100%;
}

.hf-field-dark .hf-date-input {
  padding-left: 0.7rem;
  padding-right: 0.35rem;
  color-scheme: light;
}

.hf-field-dark input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
  margin-left: 2px;
}

.hf-field-dark .hf-passenger-btn {
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.hf-passenger-caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: #5a6478;
  pointer-events: none;
}

.hf-field-dark .form-control::placeholder {
  color: #8a94a6;
}

.hf-field-dark .form-control:focus,
.hf-field-dark .hf-passenger-btn:focus,
.hf-field-dark .hf-date-input:focus {
  border-color: var(--hf-yellow);
  box-shadow: 0 0 0 2px rgba(239, 191, 0, 0.35);
  outline: none;
}

.hf-search-btn-col {
  padding: 0;
}

.hf-btn-search {
  background: var(--hf-yellow);
  color: #000;
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  padding: 0.4rem 1.25rem;
  margin-top: 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.hf-btn-search:hover {
  background: var(--hf-yellow-dark);
  color: #000;
}

.hf-btn-call {
  background: var(--hf-navy);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.hf-btn-call:hover {
  background: var(--hf-navy-dark);
  color: #fff;
}

.hf-advanced-link {
  padding-left: 0;
  margin-top: 0.25rem;
}

.hf-search-card .hf-advanced-toggle {
  color: var(--hf-text);
}

.hf-search-card .hf-advanced-toggle:hover {
  color: var(--hf-navy-dark);
  background: #f1f5f9;
}

.hf-advanced-toggle {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem 0.35rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.hf-advanced-toggle:hover {
  color: var(--hf-yellow);
  background: rgba(255, 255, 255, 0.08);
}

.hf-advanced-toggle-icon {
  font-size: 0.95rem;
  color: var(--hf-yellow);
}

.hf-advanced-chevron {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.hf-advanced-toggle:not(.collapsed) .hf-advanced-chevron {
  transform: rotate(180deg);
}

.hf-search-card .hf-advanced-panel {
  background: #f8fafc;
  border: 1px solid var(--hf-border);
}

.hf-advanced-panel {
  margin-top: 0.85rem;
  padding: 1.1rem 1.15rem 1.15rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hf-advanced-panel-title {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}

.hf-advanced-panel-title i {
  color: var(--hf-yellow);
  font-size: 0.9rem;
}

.hf-label-optional {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  vertical-align: middle;
}

.hf-field-label-stack {
  display: block;
  margin-bottom: 0.4rem;
}

.hf-field-label-main {
  display: block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.hf-label-deals {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.hf-label-deals a {
  color: var(--hf-yellow);
  text-decoration: underline;
}

.hf-label-deals a:hover {
  color: #fff;
}

.hf-field-dark .form-select,
.hf-count-select,
.hf-contact-input {
  border: 1px solid #b8c0cc;
  border-radius: 3px;
  font-size: 0.8125rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  height: 38px;
  background: #fff;
  color: #222;
  width: 100%;
}

.hf-count-select {
  padding-left: 0.65rem;
  padding-right: 1.75rem;
  cursor: pointer;
}

.hf-contact-input {
  padding-left: 2.75rem;
}

.hf-count-select:focus,
.hf-contact-input:focus {
  border-color: var(--hf-yellow);
  box-shadow: 0 0 0 2px rgba(239, 191, 0, 0.35);
  outline: none;
}

.hf-select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5a6478;
  pointer-events: none;
  z-index: 3;
}

.hf-advanced-select,
.hf-advanced-input {
  border: 1px solid #b8c0cc;
  border-radius: 3px;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 44px;
  background: #fff;
  color: #222;
  width: 100%;
}

.hf-select-wrap .hf-advanced-select {
  padding-left: 2.75rem;
  padding-right: 2.25rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.hf-advanced-input {
  padding-left: 2.75rem;
}

.hf-advanced-select:focus,
.hf-advanced-input:focus {
  border-color: var(--hf-yellow);
  box-shadow: 0 0 0 2px rgba(239, 191, 0, 0.35);
  outline: none;
}

.hf-advanced-row .hf-field-dark label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}

@media (min-width: 992px) {
  .hf-advanced-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hf-advanced-row > [class*="col"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex: none;
  }
}

.hf-search-card .hf-availability-note {
  color: var(--hf-muted);
  border-top: 1px solid var(--hf-border);
  padding-top: 0.85rem;
  margin-top: 0.5rem;
}

.hf-availability-note {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  padding-top: 0.25rem;
}

.hf-price-strip {
  background: linear-gradient(0deg, #1b3867 0%, #000032 100%);
  margin-top: 1.25rem;
}

.hf-hero-search .hf-price-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  margin-top: 0;
  pointer-events: auto;
}

.hf-price-item {
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.hf-price-item i { color: var(--hf-green); font-size: 1rem; }

.hf-typeahead-field {
  position: relative;
  z-index: 20;
}

.hf-form-row .hf-typeahead-field:focus-within {
  z-index: 30;
}

.hf-passenger-dropdown { position: relative; }

.hf-passenger-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0.75rem;
  z-index: 1050;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.hf-passenger-panel.show { display: block; }

.hf-section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--hf-navy-dark);
}

.hf-section-sub {
  color: var(--hf-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hf-dest-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 240px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hf-dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hf-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hf-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 45, 76, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
}

.hf-dest-desc {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.hf-dest-price { font-size: 1.1rem; font-weight: 700; }

.hf-dest-plane {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-navy);
}

.hf-feature-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hf-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hf-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hf-feature-body {
  padding: 1.25rem;
}

.hf-feature-body p {
  color: var(--hf-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.hf-cities-section {
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.hf-city-card-v2 {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(23, 40, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hf-city-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(23, 40, 69, 0.14);
}

.hf-city-card-v2-media {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.hf-city-card-v2-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hf-city-card-v2:hover .hf-city-card-v2-media img {
  transform: scale(1.06);
}

.hf-city-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 40, 69, 0.92) 0%, rgba(23, 40, 69, 0.25) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem 1.25rem;
  color: #fff;
}

.hf-city-card-v2-flag {
  width: 36px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.5rem;
}

.hf-city-card-v2-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  line-height: 1.2;
  color: #fff;
}

.hf-city-card-v2-country {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  color: var(--hf-yellow);
  font-weight: 500;
}

.hf-city-card-v2-plane {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-navy);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hf-city-card-v2-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hf-city-card-v2-tagline {
  font-size: 0.875rem;
  color: var(--hf-muted);
  margin: 0 0 1rem;
  line-height: 1.45;
  flex: 1;
}

.hf-btn-city {
  background: var(--hf-yellow);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hf-btn-city:hover {
  background: var(--hf-yellow-dark);
  color: #000;
  transform: translateY(-1px);
}

.hf-btn-city i {
  font-size: 1.25rem;
  line-height: 1;
}

.hf-deals-section {
  background: var(--hf-navy-dark);
}

.hf-deals-section .hf-section-title {
  color: #fff;
}

.hf-deals-section .hf-section-sub {
  color: rgba(255, 255, 255, 0.8);
}

.hf-deal-card-v2 {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hf-deal-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hf-deal-card-v2-media {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.hf-deal-card-v2-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hf-deal-card-v2:hover .hf-deal-card-v2-media img {
  transform: scale(1.06);
}

.hf-deal-card-v2-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: #c62828;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hf-deal-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 40, 69, 0.95) 0%, rgba(23, 40, 69, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.15rem;
  color: #fff;
}

.hf-deal-card-v2-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
  line-height: 1.2;
}

.hf-deal-card-v2-airport {
  font-size: 0.78rem;
  margin: 0;
  opacity: 0.92;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.hf-deal-card-v2-airport i {
  color: var(--hf-yellow);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hf-deal-card-v2-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hf-deal-card-v2-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.hf-deal-card-v2-from {
  font-size: 0.8rem;
  color: var(--hf-muted);
  text-transform: lowercase;
}

.hf-deal-card-v2-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hf-navy);
  line-height: 1;
}

.hf-deal-card-v2-pp {
  font-size: 0.75rem;
  color: var(--hf-muted);
  width: 100%;
}

.hf-btn-deal {
  background: var(--hf-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hf-btn-deal:hover {
  background: var(--hf-yellow);
  color: #000;
  transform: translateY(-1px);
}

.hf-btn-deal i {
  font-size: 1.25rem;
  line-height: 1;
}

.hf-service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.hf-service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.hf-trust-section {
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.hf-cta-section {
  border-top: 1px solid #eee;
}

.hf-service-body {
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
}

.hf-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.15rem;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 32, 96, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hf-service-card:hover .hf-icon-box,
.hf-cta-card:hover .hf-icon-box {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 32, 96, 0.22);
}

.hf-icon-box--price {
  background: linear-gradient(135deg, var(--hf-navy) 0%, #1a4a8a 100%);
}

.hf-icon-box--booking {
  background: linear-gradient(135deg, #1a4a8a 0%, var(--hf-navy) 100%);
}

.hf-icon-box--trust {
  background: linear-gradient(135deg, #0d2d5c 0%, var(--hf-navy) 100%);
}

.hf-icon-box--cta {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.45rem;
  margin: -2.25rem auto 0.85rem;
  border: 4px solid #fff;
}

.hf-icon-box--phone {
  background: linear-gradient(135deg, var(--hf-navy) 0%, #2563a8 100%);
}

.hf-icon-box--email {
  background: linear-gradient(135deg, #1e5a9e 0%, var(--hf-navy) 100%);
}

.hf-icon-box--support {
  background: linear-gradient(135deg, var(--hf-navy) 0%, #0d2d5c 100%);
}

.hf-icon-box--callback {
  background: linear-gradient(135deg, #2563a8 0%, var(--hf-navy) 100%);
}

.hf-cta-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
}

.hf-cta-card:hover {
  border-color: var(--hf-yellow);
  color: inherit;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hf-footer {
  background: var(--hf-navy);
  color: #b0b8c8;
}

.hf-footer h5 { color: #fff; font-weight: 600; }

.hf-footer a {
  color: #b0b8c8;
  text-decoration: none;
  font-size: 0.875rem;
}

.hf-footer a:hover { color: var(--hf-yellow); }

.hf-footer-bottom {
  background: #fff;
  color: var(--hf-muted);
}

.hf-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a3f5f;
  color: #fff;
  text-decoration: none;
}

.hf-social:hover {
  background: var(--hf-yellow);
  color: #000;
}

.hf-nav-quote {
  background: var(--hf-yellow);
  color: #000 !important;
  font-weight: 600;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.hf-nav-quote:hover {
  background: var(--hf-yellow-dark) !important;
  color: #000 !important;
}

.hf-input-wrap {
  position: relative;
}

.hf-typeahead-menu.typeahead.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  width: 100% !important;
  min-width: 280px;
  max-width: none;
  z-index: 1080;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 40, 69, 0.18);
  float: none;
}

.hf-typeahead-menu.typeahead.dropdown-menu li {
  margin: 0;
  padding: 0;
  border: none;
}

.hf-typeahead-menu.typeahead.dropdown-menu li + li {
  border-top: 1px solid #f0f2f5;
}

.hf-typeahead-menu.typeahead.dropdown-menu li a,
.hf-typeahead-menu.typeahead.dropdown-menu li a:hover,
.hf-typeahead-menu.typeahead.dropdown-menu li a:focus {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--hf-text);
  text-decoration: none;
  white-space: normal;
  background: transparent;
  border: none;
  border-radius: 0;
}

.hf-typeahead-menu.typeahead.dropdown-menu li a strong {
  color: var(--hf-navy);
  font-weight: 700;
}

.hf-typeahead-menu.typeahead.dropdown-menu li.active a,
.hf-typeahead-menu.typeahead.dropdown-menu li.active a:hover,
.hf-typeahead-menu.typeahead.dropdown-menu li.active a:focus {
  background: var(--hf-navy);
  color: #fff;
}

.hf-typeahead-menu.typeahead.dropdown-menu li.active a strong {
  color: var(--hf-yellow);
}

.hf-typeahead-menu.typeahead.dropdown-menu li:hover:not(.active) a {
  background: #f5f7fa;
}

.hf-typeahead-menu.typeahead.dropdown-menu .hf-no-match a {
  color: var(--hf-muted);
  font-style: italic;
  cursor: default;
}

.hf-typeahead-menu.typeahead.dropdown-menu .hf-no-match:hover a {
  background: transparent;
}

@media (max-width: 991px) {
  /* One header on mobile: sticky nav only (logo + call + menu) */
  .hf-header-top {
    display: none;
  }

  .hf-nav-bar {
    min-height: 50px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  .hf-nav-phone {
    display: flex;
  }
  .hf-main-nav .navbar-toggler {
    padding: 0.35rem 0.5rem;
    margin-left: 0;
    flex-shrink: 0;
  }
  .hf-main-nav .hf-nav-bar {
    flex-wrap: wrap;
  }
  .hf-main-nav .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid #eee;
  }
  .hf-header-hours { display: none; }
  .hf-nav-menu .nav-link {
    padding: 0.65rem 1rem;
    text-align: center;
  }
  .hf-nav-menu .nav-link.active { border-radius: 4px; }
  .hf-search-btn-col { min-width: 100%; }
  .hf-btn-search { margin-top: 0.25rem; }
  .hf-hero-search .hf-hero-carousel,
  .hf-hero-search .hf-hero-carousel .carousel-inner {
    max-height: none;
  }

  .hf-hero-carousel .carousel-control-prev,
  .hf-hero-carousel .carousel-control-next {
    display: none;
  }
  .hf-search-section {
    padding-top: 0.85rem;
  }

  /* Hero + form: stack naturally on mobile (no clipping) */
  .hf-hero-search {
    min-height: auto;
    overflow: visible;
    display: block;
    background: var(--hf-navy-dark);
    padding-top: 0.75rem;
  }

  .hf-hero-search .hf-banner {
    display: none !important;
  }

  .hf-hero-layout {
    position: relative;
    inset: auto;
    display: block;
    flex-direction: column;
    min-height: 0;
    padding: 0 1rem 0.5rem;
    gap: 0;
  }

  .hf-hero-intro {
    display: none !important;
  }

  .hf-hero-search .hf-hero-carousel .carousel-control-prev,
  .hf-hero-search .hf-hero-carousel .carousel-control-next,
  .hf-hero-search .hf-hero-carousel .carousel-indicators {
    display: none !important;
  }

  .hf-hero-form-wrap {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    flex: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
  }

  .hf-hero-search .hf-search-section {
    margin-top: 0;
    padding: 0;
    overflow: visible;
  }

  .hf-hero-search .hf-search-card {
    overflow: visible;
  }

  .hf-hero-search .hf-price-strip {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0.75rem;
    z-index: 1;
  }

  .hf-form-row-route,
  .hf-form-row-secondary {
    display: flex !important;
    flex-direction: column;
    gap: 0.65rem;
  }

  .hf-form-row-route > [class*="col"],
  .hf-form-row-secondary > [class*="col"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
  }

  .hf-hero-search .hf-form-block-actions {
    position: sticky;
    bottom: calc(var(--hf-mobile-cta-h, 52px) + 6px);
    z-index: 40;
    background: #fff;
    padding: 0.75rem 0 0.5rem;
    margin-bottom: 0.35rem;
    box-shadow: 0 -10px 24px rgba(255, 255, 255, 0.98);
  }

  .hf-hero-search .hf-btn-search {
    min-height: 48px;
    height: 48px;
    font-size: 1rem;
    font-weight: 700;
  }

  .hf-search-card {
    padding: 1.15rem 1rem 0.5rem;
    border-radius: 10px;
  }
  .hf-form-block-passengers,
  .hf-form-block-contact {
    padding: 0.85rem 0.85rem 0.1rem;
  }
  .hf-section-title { font-size: 1.35rem; }
  .hf-city-card-v2,
  .hf-deal-card-v2 { margin-bottom: 0.25rem; }
}

@media (max-width: 767px) {
  .hf-hero-search {
    background: var(--hf-navy-dark);
  }

  .hf-hero-layout {
    padding: 0.5rem 0.65rem 0.35rem;
    gap: 0.5rem;
  }

  .hf-hero-search .hf-search-section {
    margin-top: 0;
    padding: 0;
  }

  .hf-search-card {
    padding: 1rem 0.75rem 0.35rem;
  }

  .hf-hero-search .hf-form-block-actions {
    bottom: calc(var(--hf-mobile-cta-h, 52px) + 4px);
    padding: 0.65rem 0 0.4rem;
  }

  .hf-hero-search .hf-hero-carousel,
  .hf-hero-search .hf-hero-carousel .carousel-inner {
    max-height: none;
  }

  .hf-hero-search .hf-hero-img {
    height: clamp(180px, 36vw, 260px);
    min-height: clamp(180px, 36vw, 260px);
  }

  .hf-hero-carousel .carousel-indicators {
    margin-bottom: 0.15rem;
  }

  .hf-hero-carousel .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }

  .hf-search-section {
    padding-top: 0.65rem;
  }

  .hf-search-card {
    padding: 1rem 0.85rem 0.85rem;
  }

  .hf-search-card-header {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
  }

  .hf-trip-toggle label {
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }

  .hf-field-dark label {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }

  .hf-field-dark .form-control,
  .hf-field-dark .hf-passenger-btn,
  .hf-field-dark .hf-date-input {
    height: 40px;
    font-size: 0.8125rem;
  }

  .hf-btn-search {
    height: 40px;
    font-size: 0.9rem;
  }

  .hf-form-row {
    --bs-gutter-y: 0.5rem;
  }

  .hf-availability-note {
    font-size: 0.72rem;
    margin-top: 0.5rem !important;
    padding-bottom: 0.25rem !important;
  }

  .hf-dest-card { height: 200px; }

  .hf-cta-section .row {
    --bs-gutter-y: 0.65rem;
  }

  .hf-cta-section .text-center.mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .hf-cta-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    text-align: left;
  }

  .hf-cta-card .hf-icon-box--cta {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    margin: 0;
    flex-shrink: 0;
    border-width: 3px;
  }

  .hf-cta-card h5 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .hf-cta-card p {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hf-price-strip {
    margin-top: 0.5rem;
  }

  .hf-price-strip .py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hf-price-item {
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .hf-hero-search .hf-search-card {
    padding: 0.85rem 0.65rem 0.25rem;
  }
}

/* ── Mobile sticky CTA bar (Call · Quote · Chat) ── */
.hf-mobile-cta {
  display: none;
}

@media (max-width: 991px) {
  :root {
    --hf-mobile-cta-h: 58px;
  }

  body.hf-has-mobile-cta {
    padding-bottom: calc(var(--hf-mobile-cta-h) + env(safe-area-inset-bottom, 0px));
  }

  .hf-mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1.45fr;
    align-items: stretch;
    gap: 0.35rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99990;
    min-height: var(--hf-mobile-cta-h);
    padding: 0.3rem 0.5rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(23, 40, 69, 0.98) 0%, rgba(28, 45, 76, 0.99) 100%);
    border-top: 1px solid rgba(239, 191, 0, 0.3);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
  }

  .hf-mobile-cta-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0.3rem 0.35rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    position: relative;
  }

  .hf-mobile-cta-btn:active {
    transform: scale(0.98);
  }

  .hf-mobile-cta-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    color: var(--hf-yellow);
  }

  .hf-mobile-cta-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-align: left;
    white-space: nowrap;
  }

  .hf-mobile-cta-btn--quote:hover,
  .hf-mobile-cta-btn--quote:focus-visible,
  .hf-mobile-cta-btn--chat:hover,
  .hf-mobile-cta-btn--chat:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .hf-mobile-cta-btn--quote .hf-mobile-cta-icon,
  .hf-mobile-cta-btn--chat .hf-mobile-cta-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--hf-yellow);
  }

  .hf-mobile-cta-btn--call {
    background: linear-gradient(180deg, var(--hf-yellow) 0%, var(--hf-yellow-dark) 100%);
    color: #111;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
    padding: 0.4rem 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
  }

  .hf-mobile-cta-btn--call .hf-mobile-cta-icon {
    background: rgba(0, 0, 0, 0.12);
    color: #111;
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .hf-mobile-cta-btn--call .hf-mobile-cta-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #111;
  }

  .hf-mobile-cta-btn--call:hover,
  .hf-mobile-cta-btn--call:focus-visible {
    color: #000;
    background: linear-gradient(180deg, #f5c800 0%, var(--hf-yellow-dark) 100%);
    transform: none;
  }

  .hf-mobile-cta-btn--chat .hf-mobile-cta-dot {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1cb670;
    border: 1.5px solid var(--hf-navy-dark);
    animation: hfMobilePulse 2s ease infinite;
  }

  @keyframes hfMobilePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(28, 182, 112, 0.5); }
    50% { box-shadow: 0 0 0 4px rgba(28, 182, 112, 0); }
  }

  .hf-footer-bottom {
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 380px) {
  :root {
    --hf-mobile-cta-h: 48px;
  }

  .hf-mobile-cta {
    gap: 0.2rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .hf-mobile-cta-label {
    font-size: 0.6rem;
  }

  .hf-mobile-cta-btn {
    gap: 0.2rem;
    padding: 0.25rem 0.2rem;
  }

  .hf-mobile-cta-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

/* Continent destination pages — in main bundle so SPA nav always styles city lists */
.global-wrap.hf-continent-page {
  background: #eef1f5;
}

.hf-continent-hero-banner {
  position: relative;
  min-height: 280px;
  background: var(--hf-navy) center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.hf-continent-hero-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 40, 69, 0.95) 0%,
    rgba(23, 40, 69, 0.55) 45%,
    rgba(23, 40, 69, 0.25) 100%
  );
}

.hf-continent-hero-banner-inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0 2rem;
  color: #fff;
}

.hf-breadcrumb--on-dark a {
  color: rgba(255, 255, 255, 0.8);
}

.hf-breadcrumb--on-dark a:hover {
  color: #fff;
}

.hf-breadcrumb--on-dark .active {
  color: #fff;
  font-weight: 600;
}

.hf-continent-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-yellow);
  margin: 0 0 0.5rem;
}

.hf-continent-hero-title {
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: #fff;
}

.hf-continent-hero-lead {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
  max-width: 540px;
}

.hf-continent-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.15rem;
}

.hf-continent-hero-meta i {
  color: var(--hf-yellow);
  margin-right: 0.2rem;
}

.hf-continent-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hf-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 6px;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hf-btn-outline-light:hover {
  background: #fff;
  color: var(--hf-navy);
  border-color: #fff;
}

.hf-continent-page .hf-continent-deals {
  padding: 1.5rem 0 2.5rem;
  margin-top: -1.25rem;
}

.hf-continent-panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hf-border);
  box-shadow: 0 8px 28px rgba(23, 40, 69, 0.08);
  overflow: hidden;
}

.hf-continent-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--hf-border);
  background: #fafbfc;
}

.hf-continent-panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hf-navy);
  margin: 0 0 0.25rem;
}

.hf-continent-panel-sub {
  font-size: 0.88rem;
  color: var(--hf-muted);
}

.hf-continent-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--hf-border);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  min-width: min(100%, 240px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hf-continent-search i {
  color: var(--hf-muted);
}

.hf-continent-search-input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
  min-width: 0;
  background: transparent;
  color: var(--hf-text);
}

ul.hf-continent-city-list,
.hf-continent-city-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hf-continent-city-item {
  margin: 0;
  padding: 0;
  list-style: none !important;
  border-bottom: 1px solid var(--hf-border);
}

.hf-continent-city-item:last-child {
  border-bottom: none;
}

a.hf-continent-city-row,
.hf-continent-city-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: background 0.15s;
}

a.hf-continent-city-row:hover,
.hf-continent-city-row:hover {
  background: #f4f7fb;
  color: inherit;
}

.hf-continent-city-row-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #dce3ee;
}

.hf-continent-city-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hf-continent-city-row-body {
  flex: 1;
  min-width: 0;
}

.hf-continent-city-row-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hf-navy);
  line-height: 1.25;
}

.hf-continent-city-row-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--hf-muted);
  margin-top: 0.1rem;
}

.hf-continent-city-row-arrow {
  flex-shrink: 0;
  color: var(--hf-yellow-dark);
  font-size: 1.1rem;
}

.hf-continent-city-row:hover .hf-continent-city-row-arrow {
  color: var(--hf-navy);
}

.hf-continent-search-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--hf-muted);
  font-size: 0.92rem;
  margin: 0;
}

.hf-continent-call-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--hf-navy) 0%, #1a3358 100%);
  border-radius: 12px;
  color: #fff;
}

.hf-continent-call-strip-text {
  font-size: 0.92rem;
  line-height: 1.4;
}

.hf-continent-call-strip-text strong {
  display: block;
  font-size: 1rem;
}

.hf-continent-call-strip-btn {
  flex-shrink: 0;
}

.hf-continent-regions-block {
  margin-top: 2rem;
}

.hf-continent-regions-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hf-navy);
  margin: 0 0 0.85rem;
}

.hf-continent-regions-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.hf-continent-region-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 120px;
  text-decoration: none;
  color: var(--hf-navy);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.hf-continent-region-chip img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}

.hf-continent-region-chip:hover {
  color: var(--hf-navy);
}

.hf-continent-region-chip:hover img {
  border-color: var(--hf-yellow);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  ul.hf-continent-city-list,
  .hf-continent-city-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hf-continent-city-item:nth-child(odd) {
    border-right: 1px solid var(--hf-border);
  }
}

@media (max-width: 767px) {
  .hf-continent-hero-banner {
    min-height: 240px;
  }

  .hf-continent-hero-actions .hf-btn-call,
  .hf-continent-hero-actions .hf-btn-outline-light {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hf-continent-panel-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hf-continent-search {
    width: 100%;
  }

  .hf-continent-call-strip {
    flex-direction: column;
    text-align: center;
  }

  .hf-continent-call-strip-btn {
    width: 100%;
  }
}
