/* Full hero background */
.hero-section {
  background: url('https://gogatwick.com/wp-content/uploads/2025/06/Untitled-design-7.webp') no-repeat center center/cover;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* White form box */
.booking-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 25px;
  max-width: 1200px;
  width: 100%;
}

/* Base grid layout */
#taxi-booking-form {
  display: grid;
  gap: 20px;
}

/* Row 1: Pickup, Dropoff, Car, Date/Time, Return */
.form-row-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 15px;
  align-items: center;
}

/* Row 2: Name, Email, Phone, Fare */
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: center;
}

/* Row 3: Submit button */
.form-row-3 {
  text-align: center;
}

/* Form fields */
#taxi-booking-form input,
#taxi-booking-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  box-sizing: border-box;
}

/* Fare box */
#fare-display {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-weight: bold;
  text-align: center;
}

/* Return toggle */
.return-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Submit button */
#taxi-booking-form button {
  background: #FFD600;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}
#taxi-booking-form button:hover {
  background: #e0c200;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .form-row-1,
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Hero content (outside the box, above form) */
.hero-content {
  text-align: center;
  margin-bottom: 30px;
}

.hero-content .tagline {
  color: #FFD700; /* Yellow */
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content .hero-heading {
  color: #000000;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content .hero-text {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
