/* ---------- Booking / Contact form ---------- */
.booking-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.booking-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 32px;
}

.booking-success {
  background: #eef8ec;
  color: #3a7d3a;
  border: 1px solid #b7e0b0;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
}

.booking-error {
  background: #fbeaea;
  color: #a33a3a;
  border: 1px solid #eab7b7;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
}

.field-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 4px;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  color: #555;
  font-size: 16px;
  margin-top: 22px;
  margin-bottom: 8px;
}

.booking-form .required {
  color: var(--orange);
}

.booking-form input,
.booking-form textarea {
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 168, 92, 0.2);
}

.phone-field {
  display: flex;
  gap: 10px;
}

.country-code-select {
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 12px 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  flex: 0 0 auto;
  max-width: 45%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.country-code-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 168, 92, 0.2);
}

.phone-field input {
  flex: 1 1 auto;
  min-width: 0;
}

.booking-form input.field-invalid,
.booking-form textarea.field-invalid,
.country-code-select.field-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

@media (max-width: 600px) {
  .phone-field {
    flex-direction: column;
  }

  .country-code-select {
    max-width: 100%;
  }
}

.submit-btn {
  margin-top: 32px;
  align-self: flex-start;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.submit-btn:hover {
  background: #b3893f;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(201, 160, 92, 0.4);
}

@media (max-width: 600px) {
  .booking-title {
    font-size: 24px;
  }

  .submit-btn {
    align-self: stretch;
    text-align: center;
  }
}

/* ---------- Booking success modal ---------- */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.booking-modal {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.booking-modal-message {
  color: #3a7d3a;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.booking-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.booking-modal-close:hover {
  color: var(--gold);
}
