/* === Booking Form Wrapper === */
.bc-booking-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* === Text + Label Styles === */
.bc-booking-form p {
  margin-bottom: 15px;
}

.bc-booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

/* === Inputs, Selects, Textareas === */
.bc-booking-form input,
.bc-booking-form select,
.bc-booking-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bc-booking-form input:focus,
.bc-booking-form select:focus,
.bc-booking-form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
  outline: none;
}

/* === Submit Button === */
.bc-booking-form button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bc-booking-form button:hover {
  background: #005f8d;
  transform: translateY(-1px);
}

/* === Mobile Responsiveness === */
@media (max-width: 600px) {
  .bc-booking-form {
    padding: 15px;
  }

  .bc-booking-form button {
    font-size: 15px;
  }
}

/* === Message Feedback === */
.bc-message {
  margin-top: 10px;
  font-size: 14px;
  display: block;
  transition: opacity 0.3s ease;
}

.bc-sending {
  color: #888;
}

.bc-success {
  color: #2c9c2c;
  font-weight: 600;
}

.bc-error {
  color: #d44;
  font-weight: 600;
}

/* Animated Loading Indicator */
.bc-sending::after {
  content: " ⏳";
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

