/* ===============================
   BOOKING FORM STYLES
================================ */
.booking-section {
  max-width: 620px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.booking-form textarea {
  resize: none;
  height: 80px;
}

.booking-form button {
  background: #20A98A;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.booking-form button:hover {
  background: #1ebe5d;
}

.booking-note {
  font-size: 13px;
  color: #666;
  text-align: center;
}
