/* ==============================
   BOOKING MODAL
============================== */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  width: 100%;
  max-width: 820px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.booking-modal-overlay.is-open .booking-modal {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.booking-modal-logo {
  height: 36px;
  width: auto;
}

.booking-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  font-size: 1.5rem;
  line-height: 1;
}

.booking-modal-close:hover {
  color: #fff;
}

.booking-modal-body {
  padding: 1.5rem;
  flex-shrink: 0;
}

.booking-modal-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.booking-modal-body strong {
  color: #c9a84c;
}

.booking-modal-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.875rem 2rem;
  background: #c9a84c;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}

.booking-modal-btn:hover {
  background: #e0bc60;
  transform: translateY(-1px);
}

.booking-modal-calendar {
  flex: 1;
  min-height: 0;
  padding: 0 1.5rem 1.5rem;
}

.booking-modal-calendar iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 600px) {
  .booking-modal-body {
    padding: 1rem 1rem 0.5rem;
  }
  .booking-modal-calendar {
    padding: 0 1rem 1rem;
  }
}
