/* Public — flight booking (book, confirmation, track) */
:root {
  --booking-gutter: clamp(14px, 4.5vw, 28px);
}

body.page--booking-confirmation,
body.page--track-booking {
  overflow-x: clip;
}

/* --- Book page (reference layout: stacked cards, ADD PAX, terms + confirm) --- */
.page--book .booking-page-main {
  min-height: 60vh;
  padding: clamp(16px, 4vw, 24px) 0 clamp(40px, 10vw, 56px);
  background: #eceff3;
}

.page--book .booking-page-inner {
  max-width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}

.booking-form--styled {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  padding: 20px 22px 22px;
  border: 1px solid #e5e7eb;
}

.booking-route-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.booking-route-icon {
  color: var(--brand-blue, #1e52c4);
  font-size: 1.1rem;
}

.booking-route-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.02em;
}

.booking-flight-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 20px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fafafa;
}

@media (max-width: 720px) {
  .booking-flight-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-fare-block {
    text-align: center;
  }

  .booking-flight-brand {
    justify-content: center;
  }

  .booking-flight-mid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.booking-flight-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 88px;
}

.booking-airline-logo {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.booking-airline-name {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.booking-flight-mid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 14px;
  color: #1f2937;
}

.booking-nonstop {
  font-weight: 700;
  color: #111827;
  margin-right: 4px;
}

.booking-dtl--accent {
  color: #059669;
  font-weight: 700;
}

.booking-seats-hint {
  color: #374151;
  font-weight: 600;
}

.booking-fare-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 140px;
}

.booking-fare-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.booking-fare-unit-line {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
  line-height: 1.35;
}

.booking-fare-each {
  font-weight: 600;
  color: #475569;
}

.booking-fare-legend {
  font-weight: 600;
  color: #475569;
}

.booking-fare-legend-sep {
  color: #94a3b8;
  font-weight: 400;
}

.booking-fare-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.booking-inventory-hint {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
}

.booking-inventory-meta {
  font-weight: 500;
  color: #64748b;
}

.booking-fare-disclaimer {
  margin: 12px 0 0;
  font-size: 12px;
  color: #64748b;
}

.booking-card-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
  color: #0f3570;
}

.booking-pax-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-pax-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 96px)) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.booking-pax-remove {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #64748b;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.booking-pax-remove:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.booking-pax-remove:focus-visible {
  outline: 2px solid var(--brand-blue, #1e52c4);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .booking-pax-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .booking-pax-row {
    min-width: min(100%, 520px);
  }
}

.booking-select {
  padding: 10px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2937;
  background: #fff;
}

.booking-select--narrow {
  max-width: 88px;
}

.booking-field {
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2937;
  background: #fff;
}

.booking-field--full {
  width: 100%;
}

.booking-field-wrap {
  margin-bottom: 0;
}

.booking-field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.booking-field-label .req {
  color: #c2410c;
}

.booking-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .booking-contact-grid {
    grid-template-columns: 1fr;
  }
}

.booking-field-wrap--notes {
  margin-top: 14px;
}

.booking-textarea {
  width: 100%;
  resize: vertical;
  min-height: 64px;
  font-family: inherit;
}

.booking-add-pax {
  margin-top: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(30, 82, 196, 0.45);
  border-radius: 6px;
  background: #fff;
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.booking-add-pax:hover:not(:disabled) {
  background: rgba(30, 82, 196, 0.06);
}

.booking-add-pax:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-card--action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.booking-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  cursor: pointer;
  max-width: 420px;
  line-height: 1.45;
}

.booking-terms input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-blue, #1e52c4);
  flex-shrink: 0;
}

.booking-terms a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
  text-decoration: none;
}

.booking-terms a:hover {
  text-decoration: underline;
}

.booking-btn-confirm {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  background: var(--brand-blue, #1e52c4);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 82, 196, 0.35);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.booking-btn-confirm:hover {
  filter: brightness(1.05);
}

.booking-btn-confirm:active {
  transform: translateY(1px);
}

.booking-foot--below {
  margin-top: 20px;
  text-align: center;
}

.booking-section {
  padding-top: 28px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

.card-soft {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(30, 82, 196, 0.12);
  box-shadow: 0 4px 24px rgba(15, 53, 112, 0.08);
  padding: 24px 26px;
}

/* Airline logo strip (confirmation / track) — uses assets/indigo.png, akasa.png, etc. */
.booking-airline-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 0 0 18px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.booking-airline-strip__tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 12px;
  line-height: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.booking-airline-strip__logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}

.booking-airline-strip__name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.booking-h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-blue-dark, #0f3570);
}

.booking-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #e8eef4;
  padding-bottom: 8px;
}

.booking-summary-list li:last-child {
  border-bottom: none;
}

.booking-summary-list span {
  color: #64748b;
}

.booking-summary-list strong {
  color: #1e293b;
  text-align: right;
  font-weight: 700;
}

.booking-summary-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.booking-form .form-row {
  margin-bottom: 14px;
}

.booking-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.booking-label .req {
  color: #c2410c;
}

.booking-input {
  width: 100%;
}

.booking-form .booking-input {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 10px 12px;
  font-size: 15px;
}

.booking-submit {
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.booking-foot {
  margin: 16px 0 0;
  font-size: 14px;
  color: #64748b;
}

.booking-foot a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
  text-decoration: none;
}

.booking-foot a:hover {
  text-decoration: underline;
}

.booking-alert {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin: 0 0 16px;
}

.booking-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.booking-alert--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  text-align: left;
  line-height: 1.55;
}

.booking-alert--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  text-align: left;
  line-height: 1.55;
}

.booking-alert a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
}

.booking-confirm-inner {
  max-width: 560px;
  margin: 0 auto;
}

.booking-confirm-card {
  text-align: center;
}

/* --- OTA-style booking layout (confirmation + track) --- */
.page--booking-confirmation .bc,
.page--track-booking .bc {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
}

.booking-confirm-main {
  min-height: 42vh;
}

.bc-topbar {
  background: linear-gradient(135deg, #1e52c4 0%, #164a9e 55%, #0f3570 100%);
  color: #fff;
  /* Horizontal inset comes from .bc-topbar__inner.page-container */
  padding: clamp(20px, 5vw, 28px) 0 clamp(16px, 4vw, 22px);
  box-shadow: 0 4px 20px rgba(15, 53, 112, 0.25);
}

.bc-topbar__inner {
  max-width: min(100%, 1120px);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.bc-route-title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  text-align: center;
}

.bc-route-title__plane {
  display: inline-flex;
  opacity: 0.95;
  font-size: 0.9em;
  transform: rotate(-35deg);
}

.bc-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  font-size: 13px;
  opacity: 0.95;
  line-height: 1.5;
}

.bc-topbar__k {
  font-weight: 600;
  opacity: 0.85;
  margin-right: 6px;
}

.bc-actionbar {
  background: #fff;
  border-bottom: 1px solid #e8ecf1;
  padding: clamp(10px, 3vw, 14px) 0;
}

.bc-actionbar__inner {
  max-width: min(100%, 1120px);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.bc-actionbar__form {
  margin: 0;
  display: inline;
}

.bc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #1e52c4;
  background: #fff;
  color: #1e52c4;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.bc-btn-outline:hover {
  background: #e8f0fc;
  color: #0f3570;
  border-color: #0f3570;
  text-decoration: none;
}

.bc-btn-outline--block {
  width: 100%;
  box-sizing: border-box;
}

.bc-body {
  max-width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 28px) var(--booking-gutter) clamp(36px, 8vw, 48px);
  background: #f4f6f9;
  width: 100%;
  box-sizing: border-box;
}

.bc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

@media (min-width: 960px) {
  .bc-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
  }
}

.bc-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  padding: 20px 20px 22px;
}

.bc-card--soft {
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
  border-color: #fde68a;
}

.bc-card--aside {
  padding: 18px 18px 20px;
}

.bc-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.bc-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: capitalize;
}

.bc-card__title--solo {
  margin-bottom: 14px;
}

.bc-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.bc-pill--header {
  font-size: 13px;
}

.bc-pill--ok {
  background: #d1fae5;
  color: #047857;
  border: 1px solid #6ee7b7;
}

.bc-pill--pending {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fcd34d;
}

.bc-pill--bad {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.bc-flightbox {
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 16px 16px 14px;
  background: #fafbfc;
}

.bc-flightbox__subhead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 8px;
}

.bc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: #1e52c4;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.bc-flightbox__route {
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bc-flightbox__plane-ico {
  color: #1e52c4;
  font-size: 13px;
  transform: rotate(-45deg);
}

.bc-flightbox__tagline {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #d97706;
  letter-spacing: 0.02em;
}

.bc-flight-row__airline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8ecf1;
}

.bc-flight-row__logo-wrap {
  display: inline-flex;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.bc-flight-row__logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.bc-flight-row__codes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bc-flight-no {
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
}

.bc-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.bc-badge--muted {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.bc-badge--gold {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fcd34d;
}

.bc-flight-row__timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px 12px;
  align-items: start;
}

@media (max-width: 640px) {
  .bc-flight-row__timeline {
    grid-template-columns: 1fr;
  }

  .bc-leg-mid {
    flex-direction: row;
    justify-content: flex-start;
    padding: 8px 0;
  }

  .bc-leg-mid__line {
    width: 48px;
    height: 2px;
    margin: 0 10px;
  }

  .bc-leg-mid__dot {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.bc-leg__date {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.bc-leg__code {
  font-size: 14px;
  color: #334155;
  margin-bottom: 4px;
}

.bc-leg__code strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.bc-leg__ap {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  max-width: 220px;
}

.bc-leg--right {
  text-align: right;
}

@media (max-width: 640px) {
  .bc-leg--right {
    text-align: left;
  }
}

.bc-leg-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 18px;
  min-width: 88px;
}

.bc-leg-mid__dur {
  font-size: 13px;
  font-weight: 800;
  color: #1e52c4;
}

.bc-leg-mid__line {
  position: relative;
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, #93c5fd, #1e52c4);
  border-radius: 2px;
  flex-shrink: 0;
}

.bc-leg-mid__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #1e52c4;
  box-shadow: 0 0 0 3px #dbeafe;
}

.bc-leg-mid__ns {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: capitalize;
}

.bc-flightbox__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e8ecf1;
  font-size: 12px;
  color: #475569;
}

.bc-flightbox__foot i {
  color: #1e52c4;
  margin-right: 6px;
}

.bc-table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
  border-radius: 10px;
  border: 1px solid #e8ecf1;
}

.bc-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}

.bc-table th {
  text-align: left;
  padding: 10px 12px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e2e8f0;
}

.bc-table td {
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
}

.bc-table tr:last-child td {
  border-bottom: none;
}

.bc-mono {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  background: #f8fafc;
  padding: 2px 6px;
  border-radius: 4px;
}

.bc-muted {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.bc-tr-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.bc-tr-status--ok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #6ee7b7;
}

.bc-tr-status--pending {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fcd34d;
}

.bc-tr-status--bad {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.bc-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.bc-note--mail {
  margin-bottom: 12px;
  padding: 12px 14px;
  background: #eff6ff;
  border-radius: 10px;
  border: 1px solid #bfdbfe;
}

.bc-note--mail i {
  color: #1e52c4;
  margin-right: 8px;
}

.bc-note a {
  color: #1e52c4;
  font-weight: 700;
}

.bc .booking-pay-upi {
  margin-top: 22px;
}

.bc-aside__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.bc-aside__sub {
  margin: 0 0 14px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

.bc-aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-aside-form {
  margin: 0;
}

.bc-aside-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 0;
  border-radius: 10px;
  background: #f8fafc;
  color: #1e52c4;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.bc-aside-link:hover {
  background: #e8f0fc;
}

.bc-aside-link--a {
  text-decoration: none;
}

.bc-aside-link i {
  width: 1.1em;
  text-align: center;
  opacity: 0.9;
}

.bc-price-lines {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 13px;
  color: #475569;
}

.bc-price-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.bc-price-lines__total {
  font-weight: 700;
  color: #0f172a;
  border-bottom: none;
  padding-top: 10px;
}

.bc-price-lines .bc-muted {
  display: inline;
  margin: 0;
}

.bc-price-paid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
}

.bc-price-paid__lbl {
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
}

.bc-price-paid__val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f3570;
}

.bc-price-foot {
  margin: 12px 0 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.45;
}

.bc-more-flights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  color: #1e52c4;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.bc-more-flights:hover {
  background: #f8fafc;
  border-color: #1e52c4;
  text-decoration: none;
}

@media (max-width: 480px) {
  .bc-actionbar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bc-actionbar__inner .bc-actionbar__form {
    display: block;
    width: 100%;
  }

  .bc-actionbar__inner .bc-btn-outline {
    width: 100%;
    box-sizing: border-box;
  }
}

.page--booking-confirmation .bc .booking-alert,
.page--track-booking .bc .booking-alert {
  margin-top: 16px;
  margin-bottom: 0;
}

.page--booking-confirmation .booking-section--confirmation {
  background: linear-gradient(180deg, #eef4ff 0%, #f4f7fb 42%, #ffffff 100%);
  padding-top: 36px;
  padding-bottom: 56px;
}

.booking-confirm-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}

.booking-confirm-action--primary {
  background: linear-gradient(180deg, #2a5fd4 0%, #1e52c4 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.32);
}

.booking-confirm-action--primary:hover {
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.booking-confirm-action--outline {
  background: #fff;
  color: var(--brand-blue, #1e52c4);
  border: 2px solid var(--brand-blue, #1e52c4);
  box-shadow: 0 1px 3px rgba(30, 82, 196, 0.08);
}

.booking-confirm-action--outline:hover {
  background: var(--brand-blue-soft, #e8f0fc);
  color: var(--brand-blue-dark, #0f3570);
  border-color: var(--brand-blue-dark, #0f3570);
  text-decoration: none;
  transform: translateY(-1px);
}

.booking-confirm-card--empty {
  padding: 40px 26px 44px;
}

.booking-confirm-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fee2e2 0%, #fecaca 100%);
  border: 2px solid #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #b91c1c;
}

.booking-confirm-empty-title {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-blue-dark, #0f3570);
}

.booking-alert--in-card {
  margin: 0 auto 20px;
  max-width: 100%;
  text-align: left;
}

.booking-foot--empty-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  max-width: 340px;
}

@media (min-width: 480px) {
  .booking-foot--empty-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }

  .booking-foot--empty-actions .booking-confirm-action {
    flex: 0 1 auto;
    min-width: 158px;
  }
}

.booking-ref-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.booking-ref-code {
  margin: 8px 0 4px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand-blue-dark, #0f3570);
  word-break: break-all;
}

.booking-email-sent {
  margin: 0 auto 16px;
  max-width: 28rem;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  text-align: center;
}

.booking-status-pill {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.booking-status-pill.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.booking-status-pill.status-confirmed {
  background: #d1fae5;
  color: #065f46;
}

.booking-status-pill.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.booking-status-pill.status-completed {
  background: #e0e7ff;
  color: #3730a3;
}

.booking-pnr-box {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 1px solid #a7f3d0;
  text-align: center;
}

.booking-pnr-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 4px;
}

.booking-pnr-value {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #065f46;
  font-family: ui-monospace, monospace;
}

.booking-confirm-card .booking-summary-list {
  text-align: left;
}

.booking-confirm-card .booking-h2 {
  text-align: left;
}

.booking-next {
  margin: 18px 0 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  text-align: left;
}

.booking-confirm-card .booking-foot {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.booking-foot--actions .booking-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.booking-actions-stack {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.booking-ticket-download-form {
  margin: 0;
}

.booking-ticket-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #2a5fd4 0%, #1e52c4 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 82, 196, 0.35);
  transition: filter 0.15s ease, transform 0.12s ease;
}

.booking-ticket-btn:hover {
  filter: brightness(1.05);
}

.booking-ticket-btn:active {
  transform: translateY(1px);
}

.booking-ticket-download-form--html {
  margin-top: -6px;
}

.booking-ticket-btn--ghost {
  background: #fff;
  color: #1e52c4;
  border: 2px solid #1e52c4;
  box-shadow: none;
}

.booking-ticket-btn--ghost:hover {
  background: #eff6ff;
  filter: none;
}

.booking-track-wrap {
  max-width: 440px;
  margin: 0 auto;
}

.booking-track-form {
  margin: 0 auto;
}

/* --- UPI payment block (confirmation + track) --- */
.booking-pay-upi {
  margin: 22px 0 0;
  padding: 18px 18px 20px;
  text-align: left;
  border-radius: 12px;
  border: 1px solid #c8e1fc;
  background: linear-gradient(165deg, #f8fbff 0%, #eef6ff 100%);
}

.booking-pay-upi__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-pay-upi__title-icon {
  font-size: 1.25rem;
  color: var(--brand-blue, #1e52c4);
}

.booking-pay-upi__gpay-icon {
  font-size: 1.35rem;
  color: #5f6368;
}

.booking-pay-upi__lead {
  margin: 0 0 14px;
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
}

.booking-pay-upi__amount {
  margin: 0 0 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.booking-pay-upi__amount-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.booking-pay-upi__amount-value {
  font-size: 1.25rem;
  color: #0f3570;
}

.booking-pay-upi__amount-note {
  margin: 0 0 14px;
  font-size: 11px;
  color: #64748b;
  line-height: 1.45;
}

.booking-pay-upi__grid {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 300px)) 1fr;
  gap: 18px 22px;
  align-items: start;
}

@media (max-width: 520px) {
  .booking-pay-upi__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .booking-pay-upi__actions {
    width: 100%;
    max-width: 320px;
  }

  .booking-pay-upi__vpa {
    justify-content: center;
  }

  .booking-pay-upi__qr-frame {
    margin-left: auto;
    margin-right: auto;
  }
}

.booking-pay-upi__qr {
  flex-shrink: 0;
  width: 100%;
  max-width: min(100%, 300px);
}

.booking-pay-upi__qr-frame {
  padding: 12px 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.booking-pay-upi__qr-tagline {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  line-height: 1.35;
}

.booking-pay-upi__qr-fallback {
  margin: 0;
  padding: 14px;
  font-size: 12px;
  color: #b45309;
  background: #fffbeb;
  border-radius: 8px;
  text-align: center;
}

.booking-pay-upi__qr-fallback code {
  font-size: 11px;
}

.booking-pay-upi__qr-img {
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.booking-pay-upi__qr-img--poster {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  border: none;
  border-radius: 6px;
}

.booking-pay-upi__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.booking-pay-upi__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #1a73e8 0%, #1557b0 100%);
  box-shadow: 0 2px 10px rgba(26, 115, 232, 0.35);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.booking-pay-upi__btn:hover {
  filter: brightness(1.06);
  color: #fff;
}

.booking-pay-upi__btn:active {
  transform: translateY(1px);
}

.booking-pay-upi__vpa {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.booking-pay-upi__vpa-label {
  font-weight: 700;
  color: #64748b;
}

.booking-pay-upi__vpa-code {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

.booking-pay-upi__merchant {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.booking-pay-upi__ref-hint {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

.booking-pay-upi__more {
  margin: 4px 0 0;
  font-size: 13px;
}

.booking-pay-upi__more a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
  text-decoration: none;
}

.booking-pay-upi__more a:hover {
  text-decoration: underline;
}

.booking-pay-upi__whatsapp {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: #166534;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-align: left;
}

.booking-pay-upi__whatsapp-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.25rem;
  color: #25d366;
}

.booking-pay-upi__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 2px 10px rgba(18, 140, 126, 0.3);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.booking-pay-upi__wa-btn:hover {
  filter: brightness(1.05);
  color: #fff;
}

.booking-pay-upi__wa-btn:active {
  transform: translateY(1px);
}

/* Agency registration / profile — match book page band + comfortable side inset */
.page--agency-register .booking-page-main {
  min-height: 50vh;
  padding: clamp(16px, 4vw, 24px) 0 clamp(40px, 10vw, 56px);
  background: #eceff3;
  box-sizing: border-box;
}

.page--agency-register .booking-page-inner.agency-reg {
  max-width: min(100%, 520px);
  margin-left: auto;
  margin-right: auto;
  padding: 28px 0 48px;
  box-sizing: border-box;
}

.agency-reg__title {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-blue-dark, #0f3570);
}

.agency-reg__lead {
  margin: 0 0 22px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
}

.agency-reg__card {
  margin-bottom: 18px;
}

.agency-reg__h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.agency-reg__hint {
  margin: 0 0 18px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.agency-reg__form .form-row {
  margin-bottom: 14px;
}

.agency-reg__otp {
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.agency-reg__foot,
.agency-reg__back {
  margin: 16px 0 0;
  font-size: 13px;
  color: #64748b;
}

.agency-reg__foot a,
.agency-reg__back a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 600;
  text-decoration: none;
}

.agency-reg__foot a:hover,
.agency-reg__back a:hover {
  text-decoration: underline;
}

/* Global .btn-primary is white fill + blue text; on white cards it reads as a plain link. */
.page--agency-register .agency-reg__form .booking-submit.btn-primary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  background: var(--brand-blue, #1e52c4);
  color: #fff;
  border: 0;
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.28);
}

.page--agency-register .agency-reg__form .booking-submit.btn-primary:hover {
  opacity: 1;
  background: var(--brand-blue-dark, #0f3570);
  color: #fff;
  transform: translateY(-1px);
}

/* Book flight — same primary CTA treatment on white card */
.page--book .booking-form--styled .booking-submit.btn-primary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  background: var(--brand-blue, #1e52c4);
  color: #fff;
  border: 0;
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.28);
}

.page--book .booking-form--styled .booking-submit.btn-primary:hover {
  opacity: 1;
  background: var(--brand-blue-dark, #0f3570);
  color: #fff;
  transform: translateY(-1px);
}

.page--track-booking .booking-form--styled .booking-submit.btn-primary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  background: var(--brand-blue, #1e52c4);
  color: #fff;
  border: 0;
  box-shadow: 0 2px 10px rgba(30, 82, 196, 0.28);
}

.page--track-booking .booking-form--styled .booking-submit.btn-primary:hover {
  opacity: 1;
  background: var(--brand-blue-dark, #0f3570);
  color: #fff;
  transform: translateY(-1px);
}

.page--agency-register .agency-reg__foot--actions {
  margin-top: 18px;
}

.page--agency-register .agency-reg__foot--actions .agency-reg__btn {
  text-decoration: none;
}

.page--agency-register .agency-reg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.page--agency-register .agency-reg__btn--outline {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  color: var(--brand-blue, #1e52c4);
  border: 2px solid var(--brand-blue, #1e52c4);
  box-shadow: 0 1px 4px rgba(30, 82, 196, 0.12);
}

.page--agency-register .agency-reg__btn--outline:hover {
  background: var(--brand-blue-soft, #e8f0fc);
  color: var(--brand-blue-dark, #0f3570);
  border-color: var(--brand-blue-dark, #0f3570);
  text-decoration: none;
  transform: translateY(-1px);
}

.booking-agent-session {
  margin: 0 0 16px;
  padding: 10px 14px;
  font-size: 13px;
  color: #334155;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
}

.booking-agent-session a {
  color: var(--brand-blue, #1e52c4);
  font-weight: 700;
}
