/* Booking Modal Styles */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

.booking-modal__content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.booking-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.booking-modal__close:hover {
  color: #333;
}

.booking-modal__header {
  text-align: center;
  margin-bottom: 25px;
}

.booking-modal__header h2 {
  color: #38946b;
  margin: 0;
  font-size: 24px;
}

.booking-modal__header p {
  color: #666;
  margin: 10px 0 0 0;
}

.booking-modal__form {
  margin-bottom: 20px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.booking-form__field {
  margin-bottom: 20px;
}

.booking-form__field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2d3a4a;
}

.booking-form__field input,
.booking-form__field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.booking-form__field input:focus,
.booking-form__field textarea:focus {
  border-color: #38946b;
  box-shadow: 0 0 0 3px rgba(56, 148, 107, 0.1);
  outline: none;
}

.booking-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #38946b;
}

.booking-info h4 {
  margin: 0 0 15px 0;
  color: #38946b;
}

.booking-info__item {
  line-height: 1.6;
  color: #2d3a4a;
  font-size: 14px;
  margin-bottom: 5px;
}

.booking-modal__actions {
  text-align: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  margin: 0 5px;
}

.btn-primary {
  background: #38946b;
  color: white;
}

.btn-primary:hover {
  background: #2d7a56;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .booking-modal__content {
    padding: 20px;
    width: 95%;
  }
}
