.booking-input {
  width: 100%;
  background: var(--brand-input);
  color: var(--brand-white);
  border: 0;
  border-radius: 277px;
  padding: 0.625rem 1.25rem;
  font-weight: 400;
  font-size: var(--fs-sm);
  outline: none;
  box-shadow: 0px 0px 3.5px 0px #00000078;
}

.booking-field,
.airport-autocomplete-wrap {
  position: relative;
  width: 100%;
}

.booking-input-floating {
  padding-top: 1.1rem;
  padding-bottom: 0.35rem;
}

.booking-floating-label {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-xs);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
}

.booking-field:focus-within .booking-floating-label,
.airport-autocomplete-wrap:focus-within .booking-floating-label,
.booking-input-floating:not(:placeholder-shown) + .booking-floating-label,
.booking-field.is-static-label .booking-floating-label {
  top: 0.38rem;
  transform: none;
  font-size: var(--fs-2xs);
  color: rgba(255, 255, 255, 0.68);
}

.booking-field .booking-input[type="date"]::-webkit-datetime-edit,
.booking-field .booking-input[type="date"]::-webkit-calendar-picker-indicator {
  position: relative;
  z-index: 3;
}

.booking-input::placeholder {
  color: var(--brand-white);
}

.booking-input-floating::placeholder {
  font-size: var(--fs-2xs);
  color: rgba(255, 255, 255, 0.52);
}

.booking-field:not(:focus-within) .booking-input-floating::placeholder,
.airport-autocomplete-wrap:not(:focus-within) .booking-input-floating::placeholder {
  color: transparent;
}

.booking-select {
  appearance: none;
  background: var(--brand-gold);
  background-image:
    linear-gradient(45deg, transparent 50%, #c6d1d9 50%),
    linear-gradient(135deg, #c6d1d9 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.booking-select option {
  background: var(--brand-input);
  color: var(--brand-white);
}

/* ===========================
   AIRPORT AUTOCOMPLETE
   =========================== */

.airport-autocomplete-wrap {
  position: relative;
  width: 100%;
}

.airport-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: linear-gradient(135deg, #1b2932 0%, #2e4755 100%);
  border: 1px solid rgba(176, 135, 71, 0.5);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-height: 220px;
  overflow-y: auto;
}

.airport-autocomplete-wrap .booking-input[data-airport-input] {
  padding-right: 2rem;
}

.airport-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--text-light);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  z-index: 3;
}

.airport-clear-btn:hover {
  color: var(--brand-white);
  opacity: 1;
}

.airport-clear-btn i {
  font-size: 10px;
  line-height: 1;
}

.airport-dropdown li {
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background 0.2s ease;
}

.airport-dropdown li:hover,
.airport-dropdown li.is-active {
  background: rgba(176, 135, 71, 0.18);
}

.airport-dd-label {
  color: var(--brand-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.airport-dd-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-2xs);
  font-family: "Poppins", sans-serif;
}

.airport-dropdown::-webkit-scrollbar {
  width: 4px;
}

.airport-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.airport-dropdown::-webkit-scrollbar-thumb {
  background: rgba(176, 135, 71, 0.4);
  border-radius: 4px;
}
