/* Booking Popup – Modal Overlay */
.bp-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.bp-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bp-modal {
  position: relative;
  background: var(--gray-900, #111);
  border: 1px solid var(--gray-700, #333);
  border-radius: 1rem;
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
}

.bp-overlay.active .bp-modal {
  transform: translateY(0) scale(1);
}

.bp-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--gray-400, #999);
  font-size: 1.25rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.bp-close:hover {
  background: var(--gray-800, #222);
  color: #fff;
}
