:root {
  --primary: #6100FF;
  --accent:  #B98FFF;
}

/* ── Booking Hero ── */
.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: #1E0064;
}

.booking-hero-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 200vw;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 0;
  opacity: 0.5;
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,0,100,0.87) 0%, rgba(70,0,200,0.76) 50%, rgba(97,0,255,0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

.booking-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.booking-hero-copy {
  color: #fff;
  text-align: center;
  width: 100%;
}

.booking-hero-copy .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.booking-hero-copy h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 10px;
}

.booking-hero-copy > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

/* ── Booking Card ── */
.booking-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30), 0 4px 16px rgba(0,0,0,0.12);
}

/* Trip type tabs */
.booking-tabs {
  display: flex;
  gap: 3px;
  background: #F0ECF9;
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 16px;
  width: fit-content;
}

.booking-tab {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7A9A;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.booking-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(97,0,255,0.35);
}

/* Route row */
.booking-route-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 8px;
  align-items: end;
  margin-bottom: 10px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.booking-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8096B4;
}

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

.booking-field-icon {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--primary);
  pointer-events: none;
}

.booking-input {
  display: block;
  width: 100%;
  padding: 9px 10px 9px 30px;
  border: 1.5px solid rgba(11,31,94,0.12);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0D1B2E;
  background: #F6F4FF;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  min-width: 0;
  box-sizing: border-box;
}

.booking-input:focus {
  border-color: var(--primary);
  background: #fff;
}

input[type="date"].booking-input {
  color-scheme: light;
}

/* Swap button */
.booking-swap {
  background: #fff;
  border: 1.5px solid rgba(11,31,94,0.12);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.booking-swap svg { width: 15px; height: 15px; }

.booking-swap:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(180deg);
}

/* Dates + pax row */
.booking-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px;
  gap: 8px;
  align-items: end;
  margin-bottom: 14px;
}

.booking-dates-row.one-way {
  grid-template-columns: 1fr 120px;
}

.booking-dates-row.one-way #bk-return-wrap {
  display: none;
}

/* Passenger counter */
.booking-pax {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(11,31,94,0.12);
  border-radius: 10px;
  background: #F6F4FF;
  overflow: hidden;
  height: 38px;
}

.booking-pax-btn {
  background: transparent;
  border: none;
  width: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.1s;
  font-family: inherit;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-pax-btn:hover { background: rgba(97,0,255,0.10); }

#bk-pax-val {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0D1B2E;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

/* Search button */
.booking-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(97,0,255,0.4);
}

.booking-submit svg { width: 17px; height: 17px; flex-shrink: 0; }

.booking-submit:hover {
  background: #5200D6;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(97,0,255,0.45);
}

/* ── Quick actions ── */
.travel-quick {
  background: var(--surface);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.travel-qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.travel-qa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 14px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.travel-qa-card:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(97,0,255,0.12);
}

.travel-qa-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .booking-dates-row {
    grid-template-columns: 1fr 1fr;
  }
  .travel-qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .booking-route-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .booking-swap { display: none; }
  .booking-dates-row,
  .booking-dates-row.one-way {
    grid-template-columns: 1fr;
  }
}
