/* ======================================
   HOME PAGE STYLES
   ====================================== */

/* Animations */
@keyframes animate {
  0% { box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

@keyframes trin {
  from { transform: rotate3d(0, 0, 1, 0deg); }
  20%, 32%, 44%, 56%, 68% { transform: rotate3d(0, 0, 1, 0deg); }
  23%, 35%, 47%, 59%, 71% { transform: rotate3d(0, 0, 1, 15deg); }
  26%, 38%, 50%, 62%, 74% { transform: rotate3d(0, 0, 1, 0deg); }
  29%, 41%, 53%, 65%, 77% { transform: rotate3d(0, 0, 1, -15deg); }
  80% { transform: rotate3d(0, 0, 1, 0deg); }
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ======================================
   HERO SECTION
   ====================================== */

.hero {
  position: relative;
  color: #fff;
  min-height: clamp(360px, 55vh, 680px);
}

.hero picture, .hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.35));
  pointer-events: none;
}

.hero:after {
  display: block;
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(22, 22, 22, 0.6);
}

.hero-content {
  padding: 15px 15px 60px 15px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 36px;
  line-height: 40px;
  padding: 15px 10px 20px 10px;
}

.hero-text {
  font-size: 18px;
  line-height: 23px;
  padding: 0 0 20px;
  font-weight: 300;
}

.hero-ad-text {
  padding-top: 6px;
  padding-bottom: 4px;
  white-space: nowrap;
  text-align: center;
}

.hero-ad-text .until_date {
  font-weight: bold;
}

.hero-call-banner {
  color: #fff;
  display: inline-block;
  background: var(--color-primary);
  padding: 15px 20px;
  margin: 0 0 10px 0;
  border-radius: 30px;
  text-transform: uppercase;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0px 9px 5px 0px rgb(0 0 0 / 20%);
  transition: all 0.6s ease-in-out;
}

.hero-call-banner-link {
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  color: white;
}

.hero-list {
  padding: 20px 12px 10px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-list-item {
  font-size: 1.1em;
  width: 50%;
  text-align: left;
  padding: 0 0 16px 0;
  white-space: nowrap;
}

.hero-bottom {
  background: var(--color-primary);
  color: white;
  padding: 30px 0;
  font-size: 30px;
  line-height: 32px;
}

.hero-bottom-title {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}

/* ======================================
   ADVANTAGES
   ====================================== */

.advantages {
  padding: 0 20px;
  margin: 60px auto 20px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advantages-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px;
}

.advantages-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.advantages-item__icon svg {
  width: 48px;
  height: 48px;
}

.advantages-item__info {
  flex: 1;
  min-width: 0;
}

.advantages-item__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1e293b;
  margin-bottom: 4px;
}

.advantages-item__description {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #64748b;
}

/* ======================================
   FLIGHT SEARCH SECTION
   ====================================== */

.airlines-serviced {
  padding: 60px 15px;
  overflow-x: hidden;
}

.search-header {
  text-align: center;
  margin-bottom: 32px;
}

.airlines-title {
  font-size: 28px;
  line-height: 1.2;
  padding: 0;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 10px;
}

.search-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.search-flight {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.search-wrapper {
  position: relative;
}

.search-container {
  position: relative;
}

/* Loader */
.loader {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-spinner svg {
  animation: spin 1s linear infinite;
}

.loader-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

/* Error / Result state */
.search-flight-error {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  color: #000;
  gap: 0;
}

.error-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.error-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.error-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 400px;
}

.error-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
}

.error-call-btn:hover {
  background: var(--color-cta-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.error-call-btn svg {
  flex-shrink: 0;
}

.error-available {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 12px;
  font-weight: 500;
}

/* Form box */
.form-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  color: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.flight-form, .form-row {
  gap: 12px;
  display: flex;
}

.flight-form {
  flex-direction: column;
  gap: 16px;
}

.form-row {
  padding-bottom: 0;
}

/* Select & inputs */
.dropdown-btn,
.search-flight .input-select {
  padding: 8px 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 20px;
  font-size: 14px;
}

.search-flight input {
  border: none;
  border-radius: 0;
  background: transparent;
}

/* Trip type dropdown */
.trips-menu {
  width: auto;
  min-width: 180px;
}

.trips-option {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
  transition: background-color 0.15s;
}

.trips-option:hover {
  background: #f1f5f9;
}

.trips-option--active {
  font-weight: 600;
  color: var(--color-primary);
}

/* Passenger dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.dropdown-chevron {
  width: 12px;
  height: 12px;
  color: #333;
  flex-shrink: 0;
}

.dropdown-menu {
  position: absolute;
  width: 280px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  margin-top: 5px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.counter {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.counter-info p {
  margin: 0;
  font-size: 14px;
  color: #334155;
}

.counter-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-buttons button {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-buttons button:hover {
  background: #1e4a73;
}

.counter-buttons .count {
  min-width: 20px;
  text-align: center;
  font-size: 16px;
}

/* Input groups */
.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 10px;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 57, 93, 0.1);
  background: #fff;
}

.input-group label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group input {
  border: none;
  outline: none;
  font-size: 15px;
  padding: 2px 0;
  background: transparent;
  font-weight: 500;
}

.input-group input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

/* Autocomplete dropdown */
.dropdown-list {
  position: absolute;
  top: 100%; left: 0;
  min-width: 280px;
  width: max-content;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  max-height: 275px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
}

.easepick-wrapper {
  z-index: 100 !important;
}

.dropdown-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #334155;
  transition: 0.2s ease-in-out;
  gap: 10px;
  font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item--active {
  background: #f1f5f9;
  color: #1e293b;
}

/* Search button */
.search-button {
  background: var(--color-cta);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  height: 100%;
  min-height: 48px;
  transition: background-color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.search-button:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

.search-button svg {
  flex-shrink: 0;
}

/* Grid layout */
/* Search fields single-row layout */
.search-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.search-fields-row > * {
  min-width: 0;
}

.return-date-group.hidden {
  display: none;
}

.search-fields-row .input-group--from,
.search-fields-row .input-group--to {
  grid-column: 1 / -1;
}

.search-fields-row .search-button {
  grid-column: 1 / -1;
}

/* One-way: depart takes full row */
.search-fields-row .input-group--depart:has(~ .return-date-group.hidden) {
  grid-column: 1 / -1;
}

/* Input icons (plane, calendar) */
.input-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 2px;
  color: var(--color-primary);
}

/* Rich autocomplete items */
.autocomplete-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.autocomplete-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.autocomplete-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.autocomplete-name {
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
}

.autocomplete-code {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
}

.autocomplete-detail {
  font-size: 12px;
  color: var(--color-text-muted);
}

.autocomplete-loading {
  padding: 12px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
  list-style: none;
}

/* Form validation errors */
.input-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.input-group.has-error {
  border-color: #dc2626;
}

/* Disabled passenger counter buttons */
.counter-buttons button:disabled {
  background: #94b8d4;
  cursor: not-allowed;
}

.counter-buttons button:disabled:hover {
  background: #94b8d4;
}

/* ======================================
   CTA BANNER
   ====================================== */

.cta-banner {
  padding: 0 20px;
  margin: 20px auto 60px;
  max-width: 900px;
}

.cta-banner__inner {
  background: #ff6a00;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-banner__text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 4px;
}

.cta-banner__text p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cta-banner__btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.cta-banner__btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ======================================
   RESERVATIONS DESK
   ====================================== */

.reservations-desk {
  padding: 48px 20px;
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
}

.reservations-desk-heading {
  font-size: 22px;
  line-height: 1.3;
  padding: 0 0 10px;
  font-weight: 600;
  color: #0f172a;
}

.reservations-desk-body {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #64748b;
  padding: 0 0 24px;
}

.reservations-desk__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.reservations-desk__cta:hover {
  background: var(--color-cta-hover);
  text-decoration: none;
}

.reservations-desk__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ======================================
   CUSTOMER SUPPORT
   ====================================== */

.customer-support {
  background-image: url(/resources/images/btmimg-mobile.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 24px;
}

.customer-support-column {
  padding: 32px 0;
  max-width: 480px;
  margin: 0 auto;
}

.customer-support-icon {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.customer-support-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.customer-support-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.customer-support-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 14px;
}

.customer-support-text {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.column-divider {
  display: none;
}

/* ======================================
   ABOUT / DISCLAIMER
   ====================================== */

.about {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #f3f0f0;
}

.about p:first-child {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 10px;
}

.about p {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: #64748b;
  text-align: left;
  padding: 0;
  margin: 0 0 8px;
}

.about br {
  display: none;
}

.about-link {
  color: var(--color-primary);
}

/* ======================================
   FAQ SECTION
   ====================================== */

.faq-section {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1e293b;
  margin: 0 0 8px;
}

.faq-subheading {
  font-size: 15px;
  color: #64748b;
  text-align: center;
  margin: 0 0 40px;
}

.faq-list {
  border-top: 1px solid #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 4px 18px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.faq-answer a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: #1e4a73;
}

/* ======================================
   REVIEWS SECTION
   ====================================== */

.reviews-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.reviews-header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}

.reviews-header__label {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

.reviews-header__score {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

.reviews-header__stars {
  display: flex;
  gap: 4px;
}

.reviews-header__stars svg {
  display: block;
  width: 24px;
  height: 24px;
}

.reviews-header__count {
  font-size: 15px;
  color: #94a3b8;
  font-weight: 400;
}

.reviews-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 20px 20px;
  scroll-padding-left: 20px;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px;
  line-height: 1.3;
}

.review-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  flex: 1;
}

.review-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.review-card__name {
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
}

.review-card__date {
  font-size: 12px;
  color: #94a3b8;
}


/* ======================================
   POPUP MODAL (mobile only)
   ====================================== */

.popup {
  background: white;
  width: 100%;
  position: fixed;
  z-index: 1100;
  left: 0; top: 0; right: 0; bottom: 0;
}

.popup-inner {
  display: block;
  background: white;
  width: 100%;
  height: 70vh;
}

.popup-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  right: 10px; top: 0px;
  font-size: 44px;
  line-height: 64px;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  background: none;
}

.popup-title {
  font-size: 19px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
  background-color: #1569a5;
  padding: 12px 0px;
  margin-bottom: 17px;
}

.popup-customer-rep img {
  max-width: 100%;
}

.popup-service {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 7px;
  position: relative;
}

.popup-service button {
  background: #1569a5;
  border-radius: 50px;
  padding: 12px 15px;
  font-size: 18px;
  border: none;
  color: #fff;
  width: 90%;
  line-height: 22px;
}

.popup-text {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.popup-call {
  border-radius: 47px;
  background: #fe5a04;
  display: flex;
  padding: 4px;
  margin-right: 10px;
  margin-left: 7px;
  justify-content: center;
  align-items: center;
}

.popup-phone-circle {
  border: solid 3px #fff;
  height: 45px;
  width: 45px;
  background: #fe5a04 url(/resources/images/phone-icon.png) center center no-repeat;
  margin-left: 7px;
  border-radius: 50%;
}

.popup-call .popup-phone-circle {
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.popup-call h4 {
  margin: 0;
  padding-left: 9px;
  font-weight: 500;
  font-size: 18px;
  vertical-align: middle;
}

.popup-call h4 div {
  font-weight: bold;
  color: #ffffff;
  font-size: 27px;
  display: block;
  letter-spacing: 1px;
  transition: unset;
}

/* ======================================
   RESPONSIVE - TABLET (768px+)
   ====================================== */

@media screen and (min-width: 768px) {
  .popup {
    display: none;
  }

  .md {
    display: none;
  }

  .hero-content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .hero-text {
    padding: 0 0 35px;
    font-size: 28px;
    line-height: 40px;
  }

  .hero-list {
    padding: 0 0 16px;
    gap: 0;
  }

  .hero-list-item {
    font-size: 1.5em;
    width: 50%;
    text-align: left;
    padding: 0 0 24px 0;
  }

  .hero-call-banner {
    animation: none;
    border-radius: 12px;
    padding: 16px 32px;
    background: var(--color-primary);
    box-shadow: 0 4px 20px rgba(21, 57, 93, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .hero-call-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21, 57, 93, 0.5);
  }

  .hero-call-banner-link {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
  }

  .hero-bottom {
    padding: 32px 0;
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-ad-text {
    font-size: 18px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.9;
  }

  .advantages {
    flex-direction: row;
    gap: 20px;
    margin: 60px auto 20px;
    padding: 0 24px;
  }

  .advantages-item {
    flex: 1 1 0;
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    min-width: 0;
  }

  .advantages-item__icon {
    width: 56px;
    height: 56px;
  }

  .advantages-item__icon svg {
    width: 56px;
    height: 56px;
  }

  .advantages-item__heading {
    font-size: 17px;
  }

  .advantages-item__description {
    font-size: 15px;
  }

  .airlines-serviced {
    padding: 80px 24px;
  }

  .airlines-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    padding: 0;
    margin: 0 0 12px;
  }

  .search-header {
    margin-bottom: 40px;
  }

  .search-subtitle {
    font-size: 17px;
  }

  /* Tablet search row handled in 968px+ breakpoint below */

  .cta-banner {
    padding: 0 24px;
    margin: 20px auto 60px;
  }

  .cta-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
    gap: 28px;
  }

  .cta-banner__text h2 {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .cta-banner__text p {
    font-size: 15px;
  }

  .reservations-desk {
    padding: 60px 24px;
  }

  .reservations-desk-heading {
    font-size: 26px;
  }

  .reservations-desk-body {
    font-size: 16px;
  }

  .reservations-desk__cta {
    font-size: 17px;
    padding: 16px 36px;
  }

  .reviews-section {
    padding: 80px 0;
  }

  .reviews-header {
    margin-bottom: 36px;
  }

  .reviews-header__label {
    font-size: 26px;
  }

  .reviews-header__score {
    font-size: 26px;
  }

  .reviews-header__stars svg {
    width: 28px;
    height: 28px;
  }

  .reviews-header__count {
    font-size: 16px;
  }

  .reviews-grid {
    padding: 4px 40px 20px;
    scroll-padding-left: 40px;
  }

  .review-card {
    min-width: 300px;
  }

  .customer-support {
    padding: 80px 40px;
    background-image: url(/resources/images/btmimg.webp);
  }

  .customer-support-column {
    max-width: 520px;
    margin: 0 auto;
  }

  .customer-support-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .customer-support-icon svg {
    width: 28px;
    height: 28px;
  }

  .customer-support-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .customer-support-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .customer-support-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .faq-section {
    padding: 80px 40px;
  }

  .faq-heading {
    font-size: 36px;
  }

  .faq-subheading {
    font-size: 17px;
  }

  .faq-question {
    font-size: 17px;
    padding: 20px 4px;
  }

}

/* ======================================
   RESPONSIVE - DESKTOP (1200px+)
   ====================================== */

@media screen and (min-width: 1200px) {
  .hero {
    min-height: clamp(480px, 65vh, 780px);
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: left;
  }

  .hero-column {
    width: 50%;
    max-width: 520px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    padding: 0 0 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .hero-text {
    padding: 0 0 35px;
    font-size: 28px;
    line-height: 40px;
  }

  .hero-list-item {
    font-size: 1.15em;
    padding: 0 0 14px;
    width: 50%;
  }

  .hero-call-banner {
    padding: 18px 40px;
  }

  .hero-call-banner-link {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-ad-text {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .hero-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    font-size: 28px;
  }

  .hero-bottom-title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-bottom-text {
    font-size: 28px;
    font-weight: 700;
  }

  .advantages {
    margin: 80px auto 20px;
  }

  .cta-banner {
    margin: 20px auto 80px;
  }

  .cta-banner__text h2 {
    font-size: 28px;
  }

  .cta-banner__text p {
    font-size: 16px;
  }

  .faq-section {
    padding: 100px 40px;
  }

  .airlines-serviced {
    padding: 100px 80px;
  }

  .airlines-title {
    font-size: 42px;
  }

  .search-header {
    margin-bottom: 48px;
  }

  .search-subtitle {
    font-size: 18px;
  }

  .form-box {
    padding: 28px 32px;
  }

  .search-fields-row {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr auto;
  }

  .search-fields-row:has(.return-date-group.hidden) {
    grid-template-columns: 1.5fr 1.5fr 1fr auto;
  }

  .reviews-section {
    padding: 80px 0;
  }

  .reviews-header {
    margin-bottom: 40px;
  }

  .reviews-header__top {
    gap: 16px;
    margin-bottom: 10px;
  }

  .reviews-header__label {
    font-size: 30px;
  }

  .reviews-header__score {
    font-size: 30px;
  }

  .reviews-header__stars svg {
    width: 32px;
    height: 32px;
  }

  .reviews-header__count {
    font-size: 17px;
  }

  .reviews-grid {
    padding: 4px 0 20px;
    scroll-padding-left: 0;
  }

  .customer-support {
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  .customer-support-column {
    margin: 0;
    width: 42%;
    padding: 0;
  }

  .customer-support-title {
    font-size: 30px;
    white-space: nowrap;
  }

  .column-divider {
    display: block;
    width: 1px;
    height: 280px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    align-self: center;
    margin: 0 60px;
  }

  .lg {
    display: none;
  }

}

/* ======================================
   MOBILE OVERLAY (fullscreen airport search)
   ====================================== */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.mobile-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: var(--color-primary);
  color: #fff;
}

.mobile-overlay__title {
  font-size: 18px;
  font-weight: 600;
}

.mobile-overlay__close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-overlay__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-overlay__input {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8f9fb;
}

.mobile-overlay__input input {
  width: 100%;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  background: #fff;
  font-family: var(--font-family);
}

.mobile-overlay__input input:focus {
  border-color: var(--color-primary);
}

.mobile-overlay__results {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-overlay__results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-overlay__results .dropdown-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  gap: 12px;
  font-size: 15px;
}

.mobile-overlay__results .dropdown-item:active {
  background: #f1f5f9;
}

.mobile-overlay__results .autocomplete-name {
  font-size: 15px;
}

.mobile-overlay__results .autocomplete-code {
  font-size: 14px;
}

.mobile-overlay__results .autocomplete-detail {
  font-size: 13px;
}

.mobile-overlay__results .autocomplete-loading {
  padding: 24px 20px;
  font-size: 15px;
}

/* Calendar area inside date overlay */
.mobile-overlay__calendar {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.mobile-overlay__calendar .easepick-wrapper {
  position: static !important;
  box-shadow: none !important;
  width: 100% !important;
  display: block !important;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-overlay {
    display: none !important;
  }
}

/* ======================================
   RESPONSIVE - SEARCH FORM TABLET (968px+)
   ====================================== */

@media only screen and (min-width: 968px) {
  .search-fields-row {
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
  }

  .search-fields-row .input-group--from,
  .search-fields-row .input-group--to {
    grid-column: auto;
  }

  .search-fields-row .search-button {
    grid-column: auto;
  }

  /* One-way: hide return, expand from/to */
  .search-fields-row:has(.return-date-group.hidden) {
    grid-template-columns: 1.4fr 1.4fr 1fr auto;
  }

  .search-fields-row .input-group--depart:has(~ .return-date-group.hidden) {
    grid-column: auto;
  }
}

/* ======================================
   RESPONSIVE - FLIGHT FORM MOBILE
   ====================================== */

@media only screen and (max-width: 967px) {
  .search-fields-row .search-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
  }

  .error-title {
    font-size: 20px;
  }

  .error-call-btn {
    font-size: 16px;
    padding: 12px 28px;
  }

  .form-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .form-row .dropdown-btn {
    padding: 7px 12px;
    font-size: 13px;
    border-radius: 18px;
  }

  .form-row .dropdown-chevron {
    width: 10px;
    height: 10px;
  }

  .form-row .dropdown-menu.mobile-positioned {
    position: fixed;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    max-width: none;
    z-index: 9999;
  }

  .form-row .trips-menu {
    min-width: 0;
  }
}
