/*
 * Homepage Enhancements — BOWP2 Theme
 * Scoped to body.home (WordPress adds this class on the front page).
 * Booking, payment, and member pages are NOT affected.
 */

/* =============================================
   HERO SECTION — static background image
   Search card centered below tagline, fields
   run horizontal on desktop (see hp-search-row)
   ============================================= */

.home .hp-hero {
  position: relative;
  /* Explicit z-index (paired with position:relative) keeps this section's
       stacking context — and the location dropdown inside it — above later
       sections like Trust Badges. Without it, the hero's fade-in animation
       (transform, further down this file) creates its own stacking context
       that traps the dropdown's z-index, letting later sections cover it. */
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 640px;
  background-image: url("https://www.eltabina.com/wp-content/uploads/2022/04/home.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 !important;
  padding: 0 !important;
}

/* Lighten the photo so the dark navy title/icons stay readable */
.home .hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.home .hp-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home .hp-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero title above search card */
.home .hp-hero__heading {
  text-align: center;
  margin-bottom: 28px;
}

.home .hp-hero__title {
  color: var(--theme, #1e3a8e);
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.15;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.home .hp-hero__subtitle {
  color: #33415c;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* =============================================
   SEARCH CARD
   ============================================= */

.home .hp-search-card {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
}

/* Search card sits centered over the background image, capped width */
.home .hp-search-card--horizontal {
  max-width: 1140px;
}

.home .hp-search-card .tab-bus {
  background: transparent !important;
  padding: 0 !important;
}

/* Trip toggle — compact pill buttons, left-aligned */
.home .hp-trip-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  width: auto;
}

.home .hp-trip-toggle input[type="radio"] {
  display: none;
}

.home .hp-toggle-item {
  flex: 0 0 auto;
  display: flex;
}

.home .hp-trip-toggle input[type="radio"] + label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: #fff;
  background: rgba(20, 24, 38, 0.55);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.home .hp-trip-toggle input[type="radio"]:checked + label,
.home .hp-trip-toggle input[type="radio"][checked] + label {
  background: var(--theme, #1e3a8e);
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Each field stacks vertically inside the card — full width.
   Spacing between fields comes from hp-search-row's gap. */
.home .hp-field-group {
  width: 100%;
  margin-bottom: 0;
}

.home .hp-search-inner,
.home .hp-search-card .tab-bus {
  width: 100% !important;
}

/* common.css forces #bus to a fixed 250px height (leftover from the old
   vertical widget layout) — the new compact horizontal form doesn't need it */
.home #bus.hp-search-inner {
  height: auto !important;
  display: block !important;
}

/* Fields row — stacked by default (mobile/tablet), becomes a single
   horizontal row on desktop via the breakpoint further down */
.home .hp-search-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Label — no margin bottom, sits flush above input */
.home .hp-field-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #999 !important;
  margin-bottom: 0;
  padding-bottom: 4px;
  line-height: 1;
}

.home .hp-field-icon {
  color: var(--theme, #1e3a8e);
  font-size: 11px;
}

.home .hp-field-icon--dest {
  color: var(--theme, #1e3a8e);
}

/* Book Now button row */
.home .hp-btn-wrap {
  margin-top: 4px;
}

.home .hp-input-group .hp-input {
  height: 48px !important;
  width: 100% !important;
  border: 1.5px solid #dde3f5 !important;
  border-right: none !important;
  border-radius: 10px 0 0 10px !important;
  font-size: 14px !important;
  color: #2d2d2d !important;
  background: #fafbff !important;
  padding-left: 14px !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  flex: 1;
  min-width: 0;
}

/* Use flexbox so input + addon are always same height */
.home .hp-search-card .input-group,
.home .hp-input-group {
  width: 100% !important;
  display: flex !important;
  align-items: stretch !important;
}

.home .hp-search-card .input-group .form-control {
  width: 100% !important;
  flex: 1;
}

.home .hp-input-group .hp-input:focus {
  border-color: var(--theme, #1e3a8e) !important;
  box-shadow: 0 0 0 3px rgba(30, 58, 142, 0.1) !important;
  outline: none !important;
  background: #fff !important;
}

.home .hp-input-group .hp-input::placeholder {
  color: #bbb;
  font-size: 13px;
}

.home .hp-input-addon {
  background: #f0f3ff !important;
  border: 1.5px solid #dde3f5 !important;
  border-left: none !important;
  border-radius: 0 10px 10px 0 !important;
  color: var(--theme, #1e3a8e) !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 11px !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  width: 35px !important;
  /* Override Bootstrap table-cell */
  float: none !important;
  vertical-align: middle !important;
  line-height: normal !important;
}

.home .hp-swap-icon {
  flex: 0 0 auto;
  align-self: flex-end;
  margin-bottom: 10px;
  color: #bbb;
  font-size: 16px;
}

.home .hp-search-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100% !important;
  height: 52px !important;
  background: #fa2b31 !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(250, 43, 49, 0.35);
}

.home .hp-search-btn:hover {
  background: #d9232a !important;
  transform: translateY(-1px);
}

/* =============================================
   DESKTOP — horizontal search row
   From / To / Date(s) / Button share one line
   ============================================= */

@media (min-width: 992px) {
  .home .hp-search-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
  }

  .home .hp-search-row .hp-field-group {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
  }

  .home .hp-search-row .hp-btn-wrap {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .home .hp-search-row .hp-search-btn {
    width: auto !important;
    min-width: 160px;
    height: 48px !important;
    padding: 0 24px;
    white-space: nowrap;
  }
}

/* =============================================
   TRUST BADGES
   ============================================= */

.home .hp-trust {
  background: #fff;
  border-bottom: 1px solid #eef0f8;
  margin: 0 !important;
  padding: 0 !important;
}

.home .hp-trust .container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.home .hp-trust__grid {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #eef0f8;
}

.home .hp-trust__item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid #eef0f8;
  border-bottom: 1px solid #eef0f8;
}

.home .hp-trust__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home .hp-trust__icon i {
  font-size: 18px;
  color: var(--theme, #1e3a8e);
}

.home .hp-trust__text strong {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
}

.home .hp-trust__text span {
  font-size: 12px;
  color: #888;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.home .hp-steps {
  background: #f5f7ff;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 16px !important;
}

.home .hp-steps .container {
  padding-top: 10px !important;
  padding-bottom: 20px !important;
}

.home .hp-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.home .hp-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme, #1e3a8e);
  margin: 0 0 6px;
}

.home .hp-section-sub {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.home .hp-steps__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.home .hp-steps__item {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  padding: 20px 16px;
  position: relative;
}

.home .hp-steps__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(30, 58, 142, 0.07);
  line-height: 1;
  pointer-events: none;
}

.home .hp-steps__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--theme, #1e3a8e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(30, 58, 142, 0.25);
}

.home .hp-steps__icon i {
  font-size: 24px;
  color: #fff;
}

.home .hp-steps__item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.home .hp-steps__item p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.home .hp-steps__connector {
  width: 50px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--theme, #1e3a8e) 0,
    var(--theme, #1e3a8e) 6px,
    transparent 6px,
    transparent 12px
  );
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* =============================================
   MOBILE
   ============================================= */

/* =============================================
   MOBILE — compact, no wasted space
   ============================================= */

@media (max-width: 767px) {
  /* Hero — shorter than desktop, background image still shows */
  .home .hp-hero {
    min-height: 460px;
  }
  .home .hp-hero__container {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* Title — smaller, tighter spacing on mobile */
  .home .hp-hero__heading {
    margin-bottom: 18px;
  }
  .home .hp-hero__title {
    font-size: 26px;
  }
  .home .hp-hero__subtitle {
    font-size: 14px;
  }

  /* Search card — tight padding */
  .home .hp-search-card {
    padding: 12px 12px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(30, 58, 142, 0.1);
  }

  /* Toggle — same pill style, slightly smaller on mobile */
  .home .hp-trip-toggle {
    margin-bottom: 10px;
  }
  .home .hp-trip-toggle input[type="radio"] + label {
    padding: 9px 16px;
    font-size: 13px;
  }

  /* Fields — bigger touch targets, stacked full width */
  .home .hp-search-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .home .hp-search-row .hp-field-group {
    flex: 1 1 100%;
  }

  /* Departure + Return dates share a row, same as before */
  .home .hp-search-row .hp-field-group:nth-child(3),
  .home .hp-search-row .hp-field-group:nth-child(4) {
    flex: 1 1 calc(50% - 5px);
  }

  .home .hp-field-label {
    margin-bottom: 0;
    padding-bottom: 4px;
    font-size: 11px !important;
  }

  .home .hp-input-group .hp-input {
    height: 52px !important;
    font-size: 15px !important;
    padding-left: 14px !important;
  }
  .home .hp-input-addon {
    height: auto !important;
    line-height: normal !important;
    padding: 0 11px;
    font-size: 16px;
    width: 35px;
  }

  /* Button — bigger tap target, full width */
  .home .hp-search-row .hp-btn-wrap {
    flex: 1 1 100%;
    margin-top: 4px;
  }
  .home .hp-search-btn {
    height: 52px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
  }

  /* Trust badges — zero out container margins, 2x2 grid, compact items */
  .home .hp-trust .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .home .hp-trust__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    border-left: none;
  }
  .home .hp-trust__item {
    padding: 10px 12px;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #eef0f8;
    border-right: 1px solid #eef0f8;
  }
  .home .hp-trust__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .home .hp-trust__icon i {
    font-size: 13px;
  }
  .home .hp-trust__text strong {
    font-size: 13px;
  }
  .home .hp-trust__text span {
    font-size: 12px;
  }

  /* How it works — full width, no scroll, 3 compact items in a row */
  .home .hp-steps .container {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible;
  }
  .home .hp-section-header {
    margin-bottom: 12px;
  }
  .home .hp-section-title {
    font-size: 18px;
  }
  .home .hp-section-sub {
    font-size: 13px;
  }

  .home .hp-steps__grid {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
    padding-bottom: 0;
  }
  .home .hp-steps__item {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding: 10px 4px;
  }
  .home .hp-steps__num {
    font-size: 24px;
    top: 6px;
    right: 4px;
  }
  .home .hp-steps__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }
  .home .hp-steps__icon i {
    font-size: 14px;
  }
  .home .hp-steps__item h4 {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .home .hp-steps__item p {
    font-size: 12px;
    line-height: 1.4;
  }
  .home .hp-steps__connector {
    display: none;
  }

  /* WP page sections — tighter padding */
  .ht-section {
    padding: 24px 12px 12px;
  }
  .ht-section__title {
    font-size: 18px;
  }
  .ht-section__sub {
    font-size: 13px;
  }

  .ht-routes__grid,
  .ht-promos__grid,
  .ht-why__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ht-reviews__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ht-reviews__score {
    font-size: 36px;
  }
  .ht-promo-card__discount {
    font-size: 22px;
  }

  /* Why cards — horizontal compact row */
  .ht-why__item {
    padding: 14px 12px;
  }
  .ht-why__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* FAQ */
  .ht-faq__q {
    font-size: 14px;
    padding: 12px 0;
  }
  .ht-faq__a {
    font-size: 13px;
  }
}

/* Tablet / iPad — two fields per row, button full width below */
@media (min-width: 768px) and (max-width: 991px) {
  .home .hp-hero {
    min-height: 540px;
  }
  .home .hp-search-card--horizontal {
    max-width: 100%;
  }
  .home .hp-search-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .home .hp-search-row .hp-field-group {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
  .home .hp-search-row .hp-btn-wrap {
    flex: 1 1 100%;
    margin-top: 4px;
  }
  .home .hp-search-row .hp-search-btn {
    width: 100% !important;
  }
}

/* ==============================================
   SINGLE-ROW HEADER (site-wide)
   ============================================== */

/* Override old stacked layout */
#header .header-wrap {
  /* background: #ffffff !important; */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nh-bar {
  width: 100%;
  /* background: #ffffff; */
}

.nh-container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 68px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  gap: 0;
}

/* Logo */
.nh-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nh-logo .logo {
  max-height: 52px !important;
  width: auto;
  display: block !important;
  padding: 4px 0 !important;
}

/* Centre nav */
.nh-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nh-nav #nav {
  display: flex;
  align-items: center;
}

/* Override Bootstrap collapse so nav shows inline on desktop */
@media (min-width: 1200px) {
  .nh-nav .navbar-collapse {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .nh-nav .nh-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  .nh-nav .nh-menu > li {
    float: none !important;
  }

  .nh-nav .nh-menu > li > a {
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 6px !important;
    line-height: 1.4 !important;
    transition:
      color 0.2s,
      background 0.2s;
  }

  .nh-nav .nh-menu > li > a:hover,
  .nh-nav .nh-menu > li.current-menu-item > a {
    color: var(--theme, #1e3a8e) !important;
    background: #f0f4ff !important;
  }
}

/* Right section */
.nh-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Utility links */
.nh-utils {
  display: flex;
  align-items: center;
}

.nh-utils ul {
  display: flex !important;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nh-utils li {
  display: flex !important;
  align-items: center;
}

.nh-utils a {
  color: #444 !important;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px !important;
  border-radius: 6px;
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
  background: transparent !important;
}

.nh-utils a:hover {
  color: var(--theme, #1e3a8e) !important;
  background: #f0f4ff !important;
}

/* Currency selector */
.nh-currency {
  background: transparent !important;
  border-radius: 6px !important;
  color: var(--headertext, #444) !important;
  font-size: 13px !important;
  padding: 4px 8px !important;
  outline: none !important;
  cursor: pointer;
  font-weight: 500;
}

.nh-currency:hover {
    color: var(--headertexthover) !important;
}

/* Login button — slightly styled */
.nh-login-btn {
  border: 1.5px solid #dde3f5 !important;
  border-radius: 6px !important;
}

/* CTA Button */
.nh-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  background: var(--btndefault, #1e3a8e);
  color: var(--btntext, #fff);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none !important;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-left: 8px;
  box-shadow: 0 3px 10px rgba(30, 58, 142, 0.25);
}

.nh-cta-btn:hover {
  background: var(--btndefaulthover, #1e3a8e);
  color: var(--btntexthover, #1e3a8e);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Hamburger */
.nh-hamburger {
  display: none;
  margin: 0 !important;
  border: none !important;
}

.nh-hamburger .navbar-toggle {
  background: var(--theme, #1e3a8e) !important;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 0;
}

.nh-hamburger .navbar-toggle i {
  color: #fff !important;
}

/* Mobile collapse menu */
@media (max-width: 1200px) {
  .nh-container {
    flex-wrap: wrap;
    padding-left: 16px !important;
    padding-right: 16px !important;
    min-height: 56px;
  }

  .nh-logo {
    flex: 1 1 auto;
  }
  .nh-logo .logo {
    max-height: 40px !important;
  }

  .nh-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: flex-start;
  }

  .nh-nav .navbar-collapse {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eef0f8;
    padding: 8px 0;
  }

  .nh-nav .nh-menu {
    flex-direction: column !important;
    width: 100%;
  }

  .nh-nav .nh-menu > li > a {
    padding: 10px 16px !important;
    font-size: 15px !important;
    color: #333 !important;
    display: block;
    border-radius: 0 !important;
  }

  .nh-right {
    flex: 0 0 auto;
    gap: 6px;
  }

  .nh-utils {
    display: none;
  }

  .nh-cta-btn {
    padding: 7px 14px;
    font-size: 13px;
  }

  .nh-hamburger {
    display: flex !important;
    align-items: center;
  }

  .nh-nav,
  .liMemberLoginSignup-desktop {
    display: none;
  }
}

/* Hide old stacked layout elements that are now baked into nh-bar */
#divTopHeader {
  display: none !important;
}

/* ==============================================
   MOBILE DRAWER — full-screen slide from right
   ============================================== */

/* Hide Bootstrap collapse nav on mobile — drawer handles it */
@media (max-width: 1200px) {
  .nh-nav .navbar-collapse,
  .nh-nav {
    display: none !important;
  }
  .nh-utils {
    display: none !important;
  }
  .nh-cta-btn {
    display: none !important;
  }
}

/* Hamburger button */
.nh-hamburger {
  display: none;
}
@media (max-width: 1200px) {
  .nh-hamburger {
    display: flex !important;
    align-items: center;
    margin-left: 8px;
  }
}

.nh-hamburger-btn {
  background: var(--btndefault, #1e3a8e);
  color: var(--btntext, #333);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

/* Drawer root — covers full screen, hidden by default */
.nh-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
@media (max-width: 767px) {
  .nh-drawer {
    display: block;
    pointer-events: none;
  }
  .nh-drawer.is-open {
    pointer-events: auto;
  }
}

/* Semi-transparent backdrop */
.nh-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nh-drawer.is-open .nh-drawer__backdrop {
  opacity: 1;
}

/* Slide panel */
.nh-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nh-drawer.is-open .nh-drawer__panel {
  transform: translateX(0);
}

/* Drawer header row */
.nh-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #eef0f8;
  flex-shrink: 0;
  background: var(--header);
}

.nh-drawer__logo {
  max-height: 40px;
  width: auto;
}

.nh-drawer__close {
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #444;
  cursor: pointer;
}

.nh-drawer__close:hover {
  background: #ffe5e5;
  color: #e53935;
}

/* Nav links */
.nh-drawer__nav {
  padding: 8px 0;
  flex-shrink: 0;
}

.nh-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nh-drawer__menu > li > a {
  display: flex;
  align-items: center;
  padding: 14px 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #222 !important;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  background: transparent !important;
  border-radius: 0 !important;
}

.nh-drawer__menu > li > a:hover,
.nh-drawer__menu > li.current-menu-item > a {
  background: #f0f4ff !important;
  color: var(--theme, #1e3a8e) !important;
}

/* Divider */
.nh-drawer__divider {
  height: 6px;
  background: #f5f7ff;
  flex-shrink: 0;
}

/* Utility items */
.nh-drawer__utils {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex-shrink: 0;
}

.nh-drawer__util-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
  color: #333;
}

/* Hide the whole row when the link inside it is display:none */
.nh-drawer__util-item:has(a[style*="display:none"]),
.nh-drawer__util-item:has(a[style*="display: none"]) {
  display: none !important;
}

.nh-drawer__util-item i {
  width: 20px;
  text-align: center;
  color: var(--theme, #1e3a8e);
  font-size: 15px;
  flex-shrink: 0;
}

.nh-drawer__util-item a {
  color: #333 !important;
  text-decoration: none;
  font-weight: 500;
  flex: 1;
}

.nh-drawer__util-item a:hover {
  color: var(--theme, #1e3a8e) !important;
}

/* Currency select inside drawer */
.nh-drawer__currency {
  flex: 1;
  border: 1.5px solid #dde3f5 !important;
  border-radius: 6px !important;
  padding: 5px 8px !important;
  font-size: 14px !important;
  color: #333 !important;
  background: #fafbff !important;
  outline: none;
}

/* CTA at bottom of drawer */
.nh-drawer__cta {
  padding: 20px 24px;
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid #eef0f8;
}

/* ==============================================
   MICRO-INTERACTIONS (site-wide, .home scoped
   where homepage-only, plain selectors for
   shared elements like buttons)
   ============================================== */

/* --- Buttons: springy lift + ripple --- */
.hp-search-btn,
.nh-cta-btn,
.ht-route-card__btn,
.ht-promo-card__btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease,
    background 0.18s ease !important;
}
.hp-search-btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
}
.hp-search-btn:active {
  transform: scale(0.96) !important;
}
.nh-cta-btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
}
.nh-cta-btn:active {
  transform: scale(0.96) !important;
}

/* Ripple effect on Book Now / Search buttons */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  animation: htRipple 0.55s linear forwards;
  pointer-events: none;
}
@keyframes htRipple {
  to {
    width: 220px;
    height: 220px;
    opacity: 0;
  }
}

/* --- Input fields: lift + glow on focus --- */
.home .hp-input-group .hp-input {
  transition:
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s ease,
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease !important;
}
.home .hp-input-group .hp-input:focus {
  transform: scale(1.01) !important;
}
.home .hp-input-group:focus-within .hp-input-addon {
  border-color: var(--theme, #1e3a8e) !important;
  background: #eef2ff !important;
  color: var(--theme, #1e3a8e) !important;
  transition: all 0.25s ease;
}

/* --- Smooth page fade-in on load --- */
@keyframes htFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home .hp-hero {
  animation: htFadeUp 0.55s ease both;
}

/* Scroll-reveal for trust badges and steps (in tmp-index.php) */
.home .hp-trust,
.home .hp-steps {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.home .hp-trust.ht-visible,
.home .hp-steps.ht-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-reveal for WP page sections */
.ht-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.ht-section.ht-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   WP PAGE SECTIONS — shared layout
   ============================================== */

.ht-section {
  padding: 48px 0 24px;
}

.ht-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.ht-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.2;
}

.ht-section__sub {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* ==============================================
   POPULAR ROUTES
   ============================================== */

.ht-routes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 16px;
  justify-content: center;
}

/* Hide empty p tags WP injects between grid items */
.ht-routes__grid p,
.ht-routes__grid p:empty,
.ht-routes__grid br {
  display: none !important;
}

.ht-route-card {
  display: block;
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
  overflow: hidden;
}
.ht-route-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--theme, #1e3a8e);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ht-route-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 32px rgba(30, 58, 142, 0.12);
  border-color: #b0beff;
  text-decoration: none !important;
}
.ht-route-card:hover::before {
  transform: scaleY(1);
}

.ht-route-card__badge {
  display: inline-block;
  background: #fff0f0;
  color: #fa2b31;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ht-route-card__cities {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ht-route-card__from,
.ht-route-card__to {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.ht-route-card__arrow {
  color: var(--theme, #1e3a8e);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ht-route-card:hover .ht-route-card__arrow {
  transform: translateX(4px);
}

.ht-route-card__meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
.ht-route-card__meta i {
  margin-right: 4px;
  color: var(--theme, #1e3a8e);
}

.ht-route-card__price {
  font-size: 14px;
  color: #555;
}
.ht-route-card__price strong {
  color: #fa2b31;
  font-size: 18px;
}

/* ==============================================
   PROMOS
   ============================================== */

.ht-promos {
  background: #f5f7ff;
}
.ht-promos .ht-section__head {
  padding-top: 8px;
}

.ht-promos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 20px;
  justify-content: center;
}

.ht-promo-card {
  border-radius: 16px;
  overflow: hidden;
  padding: 28px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}
.ht-promo-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
}
.ht-promo-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.ht-promo-card--red {
  background: linear-gradient(135deg, #fa2b31, #c0181d);
}
.ht-promo-card--navy {
  background: linear-gradient(135deg, #1e3a8e, #0f2260);
}
.ht-promo-card--orange {
  background: linear-gradient(135deg, #f97316, #d45a00);
}

.ht-promo-card__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.ht-promo-card__discount {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.ht-promo-card__desc {
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.55;
  margin-bottom: 20px;
}

.ht-promo-card__btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.ht-promo-card__btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateX(3px);
  text-decoration: none !important;
}

/* ==============================================
   WHY CHOOSE US
   ============================================== */

.ht-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 220px));
  gap: 24px;
  justify-content: center;
}

.ht-why__item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e8eeff;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}
.ht-why__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 58, 142, 0.1);
}

.ht-why__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--theme, #1e3a8e);
  transition:
    background 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ht-why__item:hover .ht-why__icon {
  background: var(--theme, #1e3a8e);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.ht-why__item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.ht-why__item p {
  font-size: 14px;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

/* ==============================================
   GOOGLE REVIEWS
   ============================================== */

.ht-reviews {
  background: #f5f7ff;
}

.ht-reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.ht-reviews__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.ht-reviews__score {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.ht-stars {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.ht-reviews__count {
  font-size: 12px;
  color: #888;
}

.ht-reviews__grid {
  position: relative;
}

.ht-reviews__track-wrap {
  overflow: hidden;
  width: 100%;
}

.ht-reviews__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ht-review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 14px;
  padding: 20px;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}

.ht-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30, 58, 142, 0.1);
}

/* Arrow buttons */
.ht-reviews__arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.ht-reviews__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #dde3f5;
  background: #fff;
  color: var(--theme, #1e3a8e);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-reviews__arrow:hover {
  background: var(--theme, #1e3a8e);
  color: #fff;
  border-color: var(--theme, #1e3a8e);
  transform: scale(1.1);
}

.ht-reviews__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Dots */
.ht-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.ht-reviews__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dde3f5;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
  padding: 0;
}

.ht-reviews__dot.active {
  background: var(--theme, #1e3a8e);
  transform: scale(1.3);
}

/* Mobile — 1 card at a time */
@media (max-width: 767px) {
  .ht-review-card {
    flex: 0 0 100%;
  }
}

/* Tablet — 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
  .ht-review-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

.ht-review-card {
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 14px;
  padding: 20px;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}
.ht-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30, 58, 142, 0.1);
}

.ht-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ht-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ht-review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.ht-review-card__date {
  font-size: 12px;
  color: #aaa;
}

.ht-review-card__stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.ht-review-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ==============================================
   SEO TEXT + FAQ
   ============================================== */

.ht-seo__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ht-seo__inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 14px;
}

.ht-seo__inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 16px;
}

.ht-seo__inner p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.ht-faq {
  border-top: 1.5px solid #e8eeff;
}

.ht-faq__item {
  border-bottom: 1.5px solid #e8eeff;
}

.ht-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.ht-faq__q:hover {
  color: var(--theme, #1e3a8e);
}
.ht-faq__item.open .ht-faq__q {
  color: var(--theme, #1e3a8e);
}

.ht-faq__chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--theme, #1e3a8e);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s;
  line-height: 1;
}
.ht-faq__item.open .ht-faq__chevron {
  background: var(--theme, #1e3a8e);
  color: #fff;
  transform: rotate(45deg);
}

.ht-faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 0 0 2px;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    padding 0.3s ease;
}
.ht-faq__item.open .ht-faq__a {
  padding-bottom: 16px;
}

/* ==============================================
   SCROLL-REVEAL OBSERVER (injected once)
   ============================================== */
@keyframes htSectionIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================================
   MOBILE — WP page sections
   ============================================== */
@media (max-width: 767px) {
  .ht-section {
    padding: 24px 12px 12px;
  }
  .ht-section__title {
    font-size: 18px;
  }
  .ht-routes__grid,
  .ht-promos__grid,
  .ht-why__grid,
  .ht-reviews__grid {
    grid-template-columns: 1fr;
  }
  .ht-reviews__score {
    font-size: 36px;
  }
  .ht-promo-card__discount {
    font-size: 22px;
  }
}

/* Kill empty content area spacing on homepage */
.home .hp-page-content,
.home .hp-page-content .container {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Hide empty paragraphs WP injects */
.home .hp-page-content p:empty,
.home .hp-page-content br:only-child {
  display: none !important;
}
.ht-route-date-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ht-route-date-note i {
  color: var(--theme, #1e3a8e);
  font-size: 11px;
}

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

.ht-scroll-top {
  position: fixed;
  bottom: 100px;
  right: 0%;
  transform: translateX(-50%) translateY(16px) scale(0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--theme, #1e3a8e);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(30, 58, 142, 0.35);
  z-index: 9998;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease;
  pointer-events: none;
}

.ht-scroll-top.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.ht-scroll-top:hover {
  background: #fa2b31;
  transform: translateX(-50%) translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(250, 43, 49, 0.4);
}

.ht-scroll-top:active {
  transform: translateX(-50%) scale(0.95);
}

@media (max-width: 767px) {
  .ht-scroll-top {
    bottom: 70px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ==============================================
   ABOUT SECTION
   ============================================== */

.ht-about__body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ht-about__text {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.ht-about__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.ht-about__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-about__chip:hover {
  border-color: var(--theme, #1e3a8e);
  background: #eef2ff;
  transform: translateY(-2px);
}

.ht-about__chip i {
  color: #fa2b31;
  font-size: 11px;
}

/* ==============================================
   WHY BOOK ONLINE SECTION
   ============================================== */

.ht-whybook {
  background: #f5f7ff;
}

.ht-whybook__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 220px));
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}

.ht-whybook__card {
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}

.ht-whybook__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(30, 58, 142, 0.1);
}

.ht-whybook__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: var(--theme, #1e3a8e);
  transition:
    background 0.2s,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-whybook__card:hover .ht-whybook__icon {
  background: var(--theme, #1e3a8e);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.ht-whybook__card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.ht-whybook__card p {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

.ht-whybook__highlight {
  background: #fff;
  border: 1.5px solid #e8eeff;
  border-left: 4px solid #fa2b31;
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.ht-whybook__quote-icon {
  font-size: 20px;
  color: #fa2b31;
  opacity: 0.3;
  margin-bottom: 8px;
  display: block;
}

.ht-whybook__highlight p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

@media (max-width: 767px) {
  .ht-whybook__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ht-whybook__card {
    padding: 14px 10px;
  }
  .ht-whybook__icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ht-whybook__highlight {
    padding: 16px;
  }
  .ht-about__chips {
    gap: 6px;
  }
  .ht-about__chip {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Routes grid — tablet 2 cols */
@media (min-width: 768px) and (max-width: 1199px) {
  .ht-routes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================================
   SHARED CAROUSEL STYLES (routes + promos)
   ============================================== */

.ht-carousel-wrap {
  position: relative;
}

.ht-carousel-track-wrap {
  overflow: hidden;
  width: 100%;
}

.ht-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Route cards in carousel */
.ht-carousel-track .ht-route-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}

/* Promo cards in carousel */
.ht-carousel-track .ht-promo-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

/* Shared arrow + dots */
.ht-carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.ht-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #dde3f5;
  background: #fff;
  color: var(--theme, #1e3a8e);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-carousel-arrow:hover {
  background: var(--theme, #1e3a8e);
  color: #fff;
  border-color: var(--theme, #1e3a8e);
  transform: scale(1.1);
}

.ht-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.ht-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.ht-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dde3f5;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
  padding: 0;
}

.ht-carousel-dot.active {
  background: var(--theme, #1e3a8e);
  transform: scale(1.3);
}

/* Mobile — 1 card */
@media (max-width: 767px) {
  .ht-carousel-track .ht-route-card,
  .ht-carousel-track .ht-promo-card {
    flex: 0 0 100%;
  }
}

/* Tablet — 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
  .ht-carousel-track .ht-route-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .ht-carousel-track .ht-promo-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

/* FAQ group headings */
.ht-faq__group {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme, #1e3a8e);
  margin: 24px 0 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eef2ff;
}

/* FAQ nav link in header */
.nh-faq-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--headertext, #333) !important;
  border-radius: 6px;
  text-decoration: none !important;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nh-faq-link:hover {
  color: var(--theme, #1e3a8e) !important;
  background: #f0f4ff;
}

@media (max-width: 767px) {
  .nh-faq-link {
    display: none;
  }
  .sub-menu {
    display: none;
  }
}

/* ==============================================
   WELCOME / INTRO (Managing Director message)
   ============================================== */

.ht-welcome__grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.ht-welcome__text,
.ht-welcome__media {
  flex: 1 1 0;
  min-width: 0;
}

.ht-welcome__title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.3px;
  margin: 0 0 18px;
  line-height: 1.25;
}

.ht-welcome__title span {
  color: var(--theme, #1e3a8e);
}

.ht-welcome__text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px;
}

.ht-welcome__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1.5px solid #eef0f8;
}

.ht-welcome__sign-img {
  height: 44px;
  width: auto;
  display: block;
}

.ht-welcome__sign-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ht-welcome__media {
  border-radius: 18px;
}

.ht-welcome__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(30, 58, 142, 0.15);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.ht-welcome__media:hover .ht-welcome__img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 50px rgba(30, 58, 142, 0.22);
}

@media (max-width: 991px) {
  .ht-welcome__grid {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .ht-welcome__grid {
    flex-direction: column;
    gap: 28px;
  }
  .ht-welcome__title {
    font-size: 23px;
  }
  .ht-welcome__sign-img {
    height: 38px;
  }
}

/* ==============================================
   STATS COUNTER BAND
   ============================================== */

.ht-stats {
  background: linear-gradient(135deg, #12296b 0%, #1e56c2 55%, #35ccff 100%);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

/* Soft decorative circles — a bit of "fun" on an otherwise plain band */
.ht-stats::before,
.ht-stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.ht-stats::before {
  width: 220px;
  height: 220px;
  top: -110px;
  left: -60px;
}
.ht-stats::after {
  width: 280px;
  height: 280px;
  bottom: -150px;
  right: -80px;
}

.ht-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ht-stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-section.ht-visible .ht-stats__item {
  opacity: 1;
  transform: translateY(0);
}

.ht-stats__item:nth-child(1) {
  transition-delay: 0s;
}
.ht-stats__item:nth-child(2) {
  transition-delay: 0.08s;
}
.ht-stats__item:nth-child(3) {
  transition-delay: 0.16s;
}
.ht-stats__item:nth-child(4) {
  transition-delay: 0.24s;
}

.ht-stats__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

.ht-stats__item:hover .ht-stats__icon {
  transform: rotate(-8deg) scale(1.12);
  background: rgba(255, 255, 255, 0.28);
}

.ht-stats__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ht-stats__number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.ht-stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 4px 0 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .ht-stats {
    padding: 32px 0;
  }
  .ht-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
  }
  .ht-stats__icon {
    width: 46px;
    height: 46px;
  }
  .ht-stats__icon img {
    width: 22px;
    height: 22px;
  }
  .ht-stats__number {
    font-size: 24px;
  }
  .ht-stats__label {
    font-size: 12px;
  }
}

/* ==============================================
   FEATURE ROWS — Chassis / Body / Seat
   Alternates left/right on desktop for rhythm,
   always stacks text-then-image on mobile
   ============================================== */

.ht-feature__row {
  display: flex;
  align-items: center;
  gap: 56px;
}

.ht-feature--reverse .ht-feature__row {
  flex-direction: row-reverse;
}

.ht-feature__content,
.ht-feature__media {
  flex: 1 1 0;
  min-width: 0;
}

.ht-feature__logo {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-feature__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

.ht-feature__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ht-feature__flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px #e8eeff;
  flex-shrink: 0;
}

.ht-feature__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme, #1e3a8e);
  margin: 0;
  letter-spacing: 1px;
}

.ht-feature__text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

.ht-feature__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(30, 58, 142, 0.14);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.ht-feature__media:hover .ht-feature__img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 50px rgba(30, 58, 142, 0.2);
}

.ht-feature + .ht-feature {
  padding-top: 0;
}

@media (max-width: 991px) {
  .ht-feature__row,
  .ht-feature--reverse .ht-feature__row {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .ht-feature__row,
  .ht-feature--reverse .ht-feature__row {
    flex-direction: column;
    gap: 24px;
  }
  .ht-feature__title {
    font-size: 20px;
  }
  .ht-feature__text {
    font-size: 14px;
  }
  .ht-feature__logo {
    height: 28px;
    margin-bottom: 14px;
  }
}
