:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-darker: #4c1d95;
  --primary-light: #a78bfa;
  --primary-gradient: linear-gradient(180deg, #4c1d95 0%, #5b21b6 35%, #7c3aed 70%, #9333ea 100%);
  --primary-gradient-h: linear-gradient(90deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
  --text-accent: #6d28d9;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

.site-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer-wrap {
  margin-top: auto;
  width: 100%;
}

.site-footer {
  padding-top: 3rem;
}

.site-footer__shell {
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.site-footer__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__grid {
  margin-left: -12px;
  margin-right: -12px;
}

.site-footer__grid > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 1200px) {
  .site-footer__brand {
    padding-right: 2rem;
  }

  .site-footer__links {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-footer__contact {
    padding-left: 2rem;
    border-left: 1px solid #ececf1;
  }
}

.site-footer__copy {
  margin-top: 2.5rem;
}

#footer,
#footerCopy {
  background-color: #fff !important;
  color: #212529 !important;
}

#footer {
  margin-top: 0 !important;
}

.footer-logo {
  max-width: 240px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-heading {
  color: #6c757d !important;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 1rem;
}

#footer .quick-links li {
  padding: 5px 0;
}

#footer .quick-links a {
  color: #343a40 !important;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

#footer .quick-links a:hover {
  color: var(--primary-dark) !important;
}

.footer-contact-link,
.footer-contact-text {
  color: #343a40 !important;
  font-size: 17px;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--primary-dark) !important;
}

.footer-follow-label,
.footer-partner-label {
  font-size: 17px;
  color: #212529;
}

#footerCopy {
  border-color: #e0e0e0 !important;
}

.footer-badges {
  gap: 14px 20px;
}

.footer-badge-img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-cards .bg-grey {
  background-color: #e0e0e0 !important;
  border-radius: 6px;
}

.footer-divider {
  border-color: #e0e0e0;
  margin: 1rem 0;
}

.copyright {
  font-size: 15px;
  color: #6c757d;
}

@media (max-width: 767px) {
  .footer-heading {
    margin-bottom: 0.75rem;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-cards {
    justify-content: center !important;
  }

  .footer-badge-img {
    height: 24px;
  }
}

.text-primary { color: var(--text-accent) !important; }
.btn-primary, .bg-primary {
  background: var(--primary-gradient-h) !important;
  border: none !important;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #4c1d95 0%, #5b21b6 50%, #6d28d9 100%) !important;
}

/* ---- Site header / navbar ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header__accent {
  height: 3px;
  background: var(--primary-gradient-h);
}

.site-navbar {
  background: #fff !important;
  border-bottom: 1px solid #e8eaed;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
  padding: 0;
  min-height: 76px;
}

.site-navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.site-navbar__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 992px) {
  .site-navbar__collapse {
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
  }

  .site-navbar__collapse .site-navbar__nav {
    flex: 1;
    justify-content: center;
  }
}

.site-navbar .navbar-brand {
  margin-right: 1.5rem;
  padding: 0;
}

.site-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.site-navbar__logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-navbar__brand-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-navbar__toolbar {
  margin-left: auto;
  gap: 8px;
  flex-shrink: 0;
}

.site-navbar__mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ddd6fe;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  color: var(--primary);
  text-decoration: none !important;
}

.site-navbar__mobile-call .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}

.site-navbar__toggler {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}

.site-navbar__toggler .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
}

.site-navbar__collapse {
  flex-grow: 1;
}

.site-navbar__nav {
  gap: 4px;
}

.site-navbar__nav .nav-item {
  border: none !important;
  border-radius: 0 !important;
}

.site-navbar__nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #374151 !important;
  padding: 10px 18px !important;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-navbar__nav .nav-link:hover {
  color: var(--primary-dark) !important;
  background: #f5f3ff;
}

.site-navbar__nav .nav-item.active .nav-link {
  color: var(--primary) !important;
  font-weight: 600;
  background: #f5f3ff;
}

.site-navbar__nav .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-gradient-h);
}

.site-navbar__icon {
  font-size: 20px !important;
  line-height: 1;
  color: inherit;
}

.site-navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding-left: 12px;
}

.site-navbar__link-secondary {
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563 !important;
  text-decoration: none !important;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-navbar__link-secondary .material-symbols-outlined {
  font-size: 18px;
}

.site-navbar__link-secondary:hover {
  color: var(--primary) !important;
  background: #f9fafb;
}

.site-navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
  border-radius: 12px;
  padding: 10px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-navbar__cta:hover {
  border-color: #c4b5fd;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.12);
}

.site-navbar__cta-icon {
  font-size: 22px !important;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.site-navbar__cta-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.site-navbar__cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.site-navbar__cta-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

/* Legacy nav active overrides (non-site-navbar) */
nav:not(.site-navbar) .navbar-nav .nav-item.active {
  border: 1px solid var(--primary);
  border-radius: 20px;
}
nav:not(.site-navbar) .navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
}

.bg_new {
  background: var(--primary-gradient);
  background-size: cover;
  background-position: center;
  padding: 40px 0 0;
  position: relative;
  margin-bottom: 0;
}

.hero-section {
  background:
    linear-gradient(rgba(15, 10, 30, 0.72), rgba(30, 15, 60, 0.78)),
    var(--primary-gradient);
  background-size: cover;
  background-position: center bottom;
}

.hero-section.hero-section--image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-promo {
  text-align: left;
  color: #fff;
  margin-bottom: 1.75rem;
  max-width: 920px;
}

.hero-promo__title {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  color: #fff;
}

.hero-promo__phone-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.hero-promo__phone-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.hero-promo__phone {
  display: block;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
  animation: none !important;
  transition: opacity 0.2s ease;
}

.hero-promo__phone:hover {
  color: #fff !important;
  opacity: 0.9;
}

.hero-promo .phone-flash {
  animation: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Phone highlight — context-aware variants */
a:not(.btn) .phone-flash {
  color: var(--theme-primary-dark, #5b21b6);
}

.search-summary .phone-flash,
.search-summary a .phone-flash {
  color: #faf5ff !important;
  animation-name: phone-number-pulse-light;
}

@keyframes phone-number-pulse-light {
  0%, 100% {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
  }
}

.btn .phone-flash,
.btn-primary .phone-flash,
.site-navbar__cta .phone-flash {
  animation: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  color: inherit;
}

.hero-promo__tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.55;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
}

.hero-promo__tagline strong {
  font-weight: 600;
}

.hero-promo__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.hero-promo__offer-text {
  font-weight: 500;
}

.hero-promo__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.3;
  background: rgba(250, 204, 21, 0.95);
  color: #422006;
  flex-shrink: 0;
}

.hero-promo__badge--muted {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-promo__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 1rem;
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 820px;
}

.hero-promo__bar-text strong {
  font-weight: 600;
}

.hero-promo__bar-link {
  display: inline-block;
  margin-left: 6px;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.hero-promo__bar-link:hover {
  border-bottom-color: #fff;
  opacity: 0.92;
}

.hero-promo__online {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-promo__online a {
  color: #e9d5ff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(233, 213, 255, 0.5);
}

.hero-promo__online a:hover {
  color: #fff !important;
  border-bottom-color: #fff;
}

.hero-promo__online-note {
  color: rgba(255, 255, 255, 0.8);
}

.footer-wave-divider {
  margin-top: -2px;
  line-height: 0;
}

.footer-wave-divider .waves {
  display: block;
  margin-bottom: -1px;
}

.hero-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero-title span { display: block; font-size: 1.1rem; font-weight: 400; margin-top: 0.5rem; }

.flight-deals-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 28px 0 36px;
}

.flight-deals-strip__header {
  text-align: center;
  margin-bottom: 20px;
}

.flight-deals-strip__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.flight-deals-strip__subtitle {
  color: #6c757d;
  font-size: 15px;
  margin-bottom: 0;
}

.flight-deals-carousel {
  position: relative;
}

.flight-deals-carousel .item {
  padding: 0 6px;
}

.flight-deal-card {
  display: block;
  text-decoration: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(76, 29, 149, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flight-deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.2);
  text-decoration: none !important;
}

.flight-deal-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary-gradient-h, linear-gradient(90deg, #4c1d95, #7c3aed));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.flight-deals-carousel .feed_itm {
  height: 220px;
  border: none !important;
}

.flight-deals-carousel .feed_itm_ttl {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  margin-bottom: 4px;
}

.flight-deals-carousel .feed_itm_prc {
  font-size: 15px !important;
  color: #e9d5ff !important;
  font-weight: 600 !important;
}

.flight-deals-carousel .item_dtls dt {
  font-size: 13px !important;
  font-weight: 600 !important;
}

.flight-deals-carousel .item_dtls dd {
  font-size: 12px !important;
  color: #d1d5db !important;
}

.flight-deals-carousel .owl-nav button {
  background: #fff !important;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-deals-carousel .owl-nav button i {
  font-size: 28px !important;
  line-height: 1 !important;
  color: var(--primary, #7c3aed) !important;
}

@media (max-width: 767px) {
  .flight-deals-strip {
    padding: 20px 0 28px;
  }

  .flight-deals-strip__title {
    font-size: 1.25rem;
  }

  .flight-deals-carousel .feed_itm {
    height: 200px;
  }
}

.search-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

.search-card--hero-inline {
  max-width: 100%;
  width: 100%;
  border-radius: 14px;
}

.search-card__tabs {
  display: inline-flex;
  gap: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.search-card__tab {
  position: relative;
  margin: 0;
  margin-bottom: -1px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(15, 10, 40, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 0.55rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-card--hero-inline .search-card__tab:not(.active) {
  color: #f3e8ff;
  background: rgba(30, 16, 51, 0.55);
}

.search-card--hero-inline .search-card__tab:not(.active):hover {
  color: #fff;
  background: rgba(30, 16, 51, 0.72);
}

.search-card__tab + .search-card__tab {
  margin-left: 4px;
}

.search-card__tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.search-card__tab span {
  display: block;
}

.search-card__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.search-card__tab.active {
  color: #4c1d95;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.search-card__body {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 1.15rem 1.25rem 1.25rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.hero-section .container {
  overflow: visible;
}

.search-card:not(.search-card--hero-inline) .search-card__tab {
  color: #64748b;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.search-card:not(.search-card--hero-inline) .search-card__tab.active {
  color: #5b21b6;
  background: #fff;
  border-color: #e2e8f0;
  border-bottom-color: #fff;
}

.search-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
}

.search-card__field {
  flex: 1 1 140px;
  min-width: 0;
}

.search-card__field--from,
.search-card__field--to {
  flex: 1.4 1 160px;
}

.search-card__field--depart,
.search-card__field--return {
  flex: 0.9 1 120px;
}

.search-card__field--travelers {
  flex: 1.1 1 150px;
}

.search-card__swap {
  flex: 0 0 auto;
  align-self: center;
  padding-top: 0.5rem;
}

.search-card__submit {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  min-width: 110px;
}

.btn-search-submit {
  width: 100%;
  min-height: 100%;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  white-space: nowrap;
}

.search-card--hero-inline .search-card__row {
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .search-card--hero-inline .search-card__row {
    flex-wrap: nowrap;
  }
}

.search-card--hero-inline .search-card__field {
  margin-bottom: 0;
}

.search-card--hero-inline .formRow--input {
  margin-bottom: 0;
  height: 100%;
  min-height: 62px;
  padding: 0.5rem 0.75rem;
}

.search-card--hero-inline .btn-search-submit {
  min-height: 62px;
}

/* Search field layout */
.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.search-field__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
  line-height: 1.2;
}

.search-field__control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.5rem;
}

.search-field__control input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  padding: 0;
  padding-right: 1.75rem;
}

.search-field__control input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.search-field__control input[readonly] {
  cursor: pointer;
  color: #1e293b;
}

.search-field__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #7c3aed;
  pointer-events: none;
  line-height: 1;
}

.search-card .formRow--input label:not(.search-field__label) {
  font-size: 0.68rem;
  color: #64748b;
}

.search-card .formRow--input input,
.search-card .formRow--input select {
  border: none;
  width: 100%;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
}

.search-card .swap-btn {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.search-card .formRow--input.search-field {
  padding: 0.5rem 0.75rem;
  letter-spacing: normal;
  line-height: normal;
  resize: none;
  width: 100%;
}

.search-card #traveller_display {
  cursor: pointer;
}

.search-card .formRow--input:focus-within {
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}

.trip-type label {
  margin-right: 20px;
  font-weight: 600;
  cursor: pointer;
}
.trip-type input { margin-right: 6px; accent-color: var(--primary); }

.formRow--input {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  position: relative;
  margin-bottom: 12px;
  background: #fff;
}
.formRow--input label {
  font-size: 11px;
  color: #888;
  margin-bottom: 0;
  display: block;
}
.formRow--input input, .formRow--input select {
  border: none;
  width: 100%;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: #0f172a;
}
.swap-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
}

.traveller-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: none;
}
.traveller-dropdown.show { display: block; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}
.trust-badges img { max-height: 50px; }

.feature-card {
  text-align: center;
  padding: 30px 20px;
}
.feature-card .material-symbols-outlined {
  font-size: 48px;
  color: var(--primary);
}
.feature-card h4 { font-size: 18px; font-weight: 600; margin: 12px 0 8px; }

.dest-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.dest-card img { width: 100%; height: 200px; object-fit: cover; }
.dest-card .dest-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-weight: 600;
}

.review-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 24px;
  margin: 10px;
  text-align: center;
}
.review-stars { color: #00b67a; font-size: 20px; }

.route-tabs .nav-link { color: #333; font-weight: 600; }
.route-tabs .nav-link.active { color: var(--primary); border-bottom: 3px solid var(--primary); }
.route-list { column-count: 2; column-gap: 30px; }
.route-list a { display: block; padding: 4px 0; font-size: 14px; color: #333; }
.route-list a:hover { color: var(--primary); }

.newsletter-box {
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 12px;
  padding: 30px;
}
.newsletter-box input[type=email] {
  border-radius: 6px;
  border: none;
  padding: 10px 14px;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
}
.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  width: 90%;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  z-index: 10000;
}
.exit-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.flight-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
}
.flight-card:hover { border-color: var(--primary); }
.flight-price { font-size: 24px; font-weight: 700; color: var(--text-accent); }

.search-modify-bar {
  background: var(--primary-gradient);
  color: #fff;
  padding: 16px 0;
  margin-bottom: 24px;
}

.booking-step { display: flex; gap: 8px; margin-bottom: 24px; }
.booking-step span {
  padding: 6px 16px;
  border-radius: 20px;
  background: #eee;
  font-size: 13px;
  font-weight: 600;
}
.booking-step span.active { background: var(--primary); color: #fff; }

.payment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.payment-detail-item label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 4px;
}

.payment-detail-item strong {
  color: #1a1a2e;
  font-size: 15px;
  line-height: 1.5;
}

.payment-detail-item--full {
  grid-column: 1 / -1;
}

.payment-sensitive {
  font-family: Consolas, "Courier New", monospace;
  letter-spacing: 0.04em;
}

.verification-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
}

.verification-alert .material-symbols-outlined {
  color: #b45309;
  font-size: 36px;
}

.verification-upload-block {
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
}

.verification-doc-review:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.4rem; }
  .route-list { column-count: 1; }
}
