.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, 0.75);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal {
  position: relative;
  background: #3959b0;
  border: 1px solid #2b4486;
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 400px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.booking-modal-close:hover { color: #d3f00a; }

.booking-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.booking-option-btn {
  padding: 10px 14px;
  background: #2b4486;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: capitalize;
}
.booking-option-btn:hover {
  background: #cffe61;
  color: #000;
}

.booking-back-btn {
  margin-top: 8px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
}
.booking-back-btn:hover { color: #cffe61; }

.booking-loading, .booking-error {
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 20px 0;
}

.booking-summary {
  font-size: 13px;
  color: #cffe61;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-form input {
  padding: 10px 12px;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  background: #2b4486;
  color: #fff;
  font-family: 'Stack Sans Headline', sans-serif;
  font-size: 13px;
}

.booking-form input::placeholder {
  color: #b3afaf;
}

.booking-form select {
  padding: 10px 12px;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  background: #2b4486;
  color: #e8e6e0;
  font-family: 'Stack Sans Headline', sans-serif;
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.booking-select-group {
  margin-bottom: 12px;
}
.booking-select-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #d3f00a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.booking-select-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #2a2f3e;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-family: 'Stack Sans Headline', sans-serif;
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.booking-select-group select:focus { border-color: #cffe61; }

.booking-submit-btn {
  margin-top: 4px;
  padding: 10px;
  background: #cffe61;
  border: none;
  border-radius: 8px;
  color: #3959b0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.booking-submit-btn:hover { opacity: 0.85; }
.booking-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.booking-confirmation {
  text-align: center;
}
.booking-confirmation p { margin-bottom: 8px; color: #e8e6e0; font-size: 14px; }