#uber-reservation-form {
  max-width: 700px;
  margin: 30px auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 25px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(10px);
}

h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #f5c518; /* gold title */
}

/* 🔸 Input fields */
.input-icon {
  display: flex;
  align-items: center;
  background: rgba(28, 28, 28, 0.6);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}
.input-icon i {
  margin-right: 10px;
  color: #f5c518;
  font-size: 1.1em;
}
.input-icon input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

/* 🔹 Buttons — gold with black text, white on hover */
button {
  background: linear-gradient(135deg, #f5c518, #c89f1a);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  color: #000; /* black text */
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
}

button:hover {
  background: linear-gradient(135deg, #ffd43b, #e0b91a);
  box-shadow: 0 0 18px rgba(245, 197, 24, 0.8);
  color: #fff; /* white text on hover */
}

/* 🔹 Submit button — black background */
button[type="submit"] {
  background: #000;
  color: #f5c518; /* gold text */
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.3);
}
button[type="submit"]:hover {
  background: #f5c518;
  color: #fff;
  box-shadow: 0 0 18px rgba(245, 197, 24, 0.8);
}

/* 🔹 Step container */
.step {
  transition: opacity 0.3s ease;
}

/* 🔹 Car selection grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 10px;
}
.car-option {
  background: rgba(255, 255, 255, 0.05); /* transparent card */
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, border 0.25s ease;
}
.car-option img {
  width: 100%;
  border-radius: 10px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}
.car-option:hover img {
  opacity: 1;
}
.car-option span {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #fff;
}
.car-option.selected {
  border: 2px solid #f5c518;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.4);
  transform: scale(1.05);
}

/* 🔹 Navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* 🔹 Popup */
#validation-popup {
  display: none;
  background: rgba(231, 76, 60, 0.9);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
}

/* 🔹 Review box */
.review-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

/* 🔹 Success message */
.uber-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
}

/* 🔹 Google Places dropdown fix */
.pac-container {
  z-index: 99999 !important;
}
