/* === Background and Base === */
body {
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url("Image/pexels-francesco-ungaro-2325447.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* === Booking Box === */
.booking-form-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  max-width: 500px;
  margin: 80px auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* === Radio Button Group === */
.radio-btn {
  margin-bottom: 20px;
}

.radio-btn label {
  margin: 0 10px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.radio-btn input[type="radio"] {
  display: none;
}

.radio-btn span {
  position: relative;
  padding-left: 25px;
}

.radio-btn span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 2px solid #007bff;
  border-radius: 50%;
}

.radio-btn input[type="radio"]:checked + span::before {
  background-color: #007bff;
}

/* === Form Elements === */
.booking-form label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-control,
.custom-select {
  background-color: #f8f9fa;
  color: #333;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  margin-bottom: 10px;
}

/* === Calendar Icon Fix (optional styling) === */
.select-date::-webkit-calendar-picker-indicator {
  filter: invert(0.3);
}

/* === Submit Button === */
.flight {
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.flight:hover {
  background-color: #0056b3;
}
