/* WRAPPER FORCE */
.booking-form,
.booking-form * {
  box-sizing: border-box;
}

/* MAIN CONTAINER */
.booking-form {
  max-width: 680px !important;
  margin: 50px auto !important;
  padding: 35px !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
  font-family: 'Poppins', sans-serif !important;
}

/* TITLE */
.booking-form .form-title {
  text-align: center !important;
  font-size: 24px !important;
  margin-bottom: 25px !important;
  color: #2c3e50 !important;
  font-weight: 600 !important;
}

/* SECTION */
.booking-form .form-section {
  margin-bottom: 28px !important;
}

.booking-form .form-section h4 {
  font-size: 15px !important;
  margin-bottom: 12px !important;
  color: #555 !important;
}

/* INPUTS (STRONG TARGETING) */
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
  width: 100% !important;
  padding: 13px !important;
  margin-bottom: 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  background: #f9fbfc !important;
  font-size: 14px !important;
  line-height: normal !important;
}

/* FOCUS */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #4CAF50 !important;
  box-shadow: 0 0 0 2px rgba(76,175,80,0.15) !important;
  outline: none !important;
}

/* TIME SLOTS */
.booking-form .time-slots {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.booking-form .time-slot {
  padding: 10px 14px !important;
  border-radius: 8px !important;
  border: 1px solid #4CAF50 !important;
  background: #fff !important;
  cursor: pointer !important;
  font-size: 13px !important;
}

/* ACTIVE SLOT */
.booking-form .time-slot.active {
  background: #4CAF50 !important;
  color: #fff !important;
}

/* DISABLED SLOT */
.booking-form .time-slot.disabled {
  background: #eee !important;
  border-color: #ccc !important;
  color: #999 !important;
  cursor: not-allowed !important;
}

/* LOCATION BOX */
.booking-form .location-box {
  margin-top: 12px !important;
  padding: 12px !important;
  background: #e8f5e9 !important;
  border-left: 4px solid #4CAF50 !important;
  border-radius: 6px !important;
  color: #2e7d32 !important;
  font-size: 14px !important;
}

/* BUTTON */
.booking-form .booking-btn {
  width: 100% !important;
  padding: 14px !important;
  background: #4CAF50 !important;
  color: #fff !important;
  border-radius: 10px !important;
  border: none !important;
  font-size: 16px !important;
  cursor: pointer !important;
}

/* RESPONSE */
#rmc_response {
  margin-top: 18px !important;
  text-align: center !important;
  font-size: 14px !important;
}