.booking-input,
.booking-input::placeholder,
.booking-input:focus {
  color: #fff !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.booking-box {
  background-color: #1a1a1a;
  border-left: 6px solid #ffd700;
  transition: all 0.3s ease-in-out;
}

.booking-input {
  background-color: #121212;
  border: 1px solid #444;
  color: #fff;
  font-size: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
  text-align: center;
}

.booking-input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  background-color: #181818;
}

.booking-input option {
  background-color: #121212;
  color: #fff;
  text-align: center;
}

.form-label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
  display: block;
}

.btn-gold {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-gold:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}
