.taxi0297-booking-wrapper {
  padding: 20px;
  background: radial-gradient(circle at top, #6b5bff 0, #2d2b6f 40%, #171437 100%);
}
.taxi0297-booking-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(145deg, #6c4fd8, #4c46c5);
  border-radius: 24px;
  padding: 24px 24px 32px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
.taxi0297-step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.taxi0297-step-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}
.taxi0297-step-indicator .step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.taxi0297-step-indicator .circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.taxi0297-step-indicator .step.active .circle {
  background: #ffc526;
  border-color: #ffd86a;
  color: #1a1334;
}
.taxi0297-step-indicator .step span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.taxi0297-step-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}
.taxi0297-field {
  display: block;
  margin-bottom: 12px;
}
.taxi0297-field span {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  opacity: 0.9;
}
.taxi0297-field input,
.taxi0297-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 12px;
  background: rgba(12, 10, 36, 0.35);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all .2s;
}
.taxi0297-field input:focus,
.taxi0297-field textarea:focus {
  border-color: #ffd86a;
  box-shadow: 0 0 0 1px rgba(255,216,106,0.4);
  background: rgba(20, 18, 54, 0.75);
}
.taxi0297-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 12px;
}
.taxi0297-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 14px;
}
.taxi0297-radio-group {
  margin: 10px 0 16px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.taxi0297-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.taxi0297-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}
.taxi0297-step-actions button {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.taxi0297-next-step,
.taxi0297-submit {
  background: #ffc526;
  color: #1a1334;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.taxi0297-prev-step {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.taxi0297-step-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}
.taxi0297-vehicles {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 14px;
  margin-top: 10px;
}
.taxi0297-vehicle-card {
  background: rgba(8, 5, 32, 0.45);
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all .18s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.taxi0297-vehicle-card:hover {
  border-color: #ffd86a;
  background: rgba(18, 10, 62, 0.85);
}
.taxi0297-vehicle-card.selected {
  border-color: #ffd86a;
  box-shadow: 0 0 0 2px rgba(255,216,106,0.5);
  background: rgba(22, 14, 72, 0.95);
}
.taxi0297-vehicle-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 600;
}
.taxi0297-vehicle-capacity {
  font-size: 12px;
  opacity: 0.9;
}
.taxi0297-vehicle-description {
  font-size: 12px;
  opacity: 0.9;
}
.taxi0297-summary {
  background: rgba(8,5,32,0.55);
  border-radius: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-line;
}
.taxi0297-message {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  background: rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .taxi0297-booking-card {
    padding: 16px 16px 22px;
  }
  .taxi0297-step-indicator span {
    font-size: 10px;
  }
}
