/* Booking page — The Cyan Ark */

.booking-page {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 254, 255, 0.45) 42%, #f8fafc 100%);
}

.booking-page-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(6, 182, 212, 0.14), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.07), transparent 35%);
}

.booking-intro {
  margin: 0 auto 2.75rem;
  max-width: 40rem;
  text-align: center;
}

.booking-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-wrap: balance;
}

.booking-lead {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
}

.booking-calendar {
  position: relative;
  margin: 0 auto;
  max-width: 56rem;
  min-height: 620px;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(203, 213, 225, 0.85);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.booking-calendar.is-loaded {
  min-height: 0;
}

.booking-calendar.is-loading {
  min-height: 620px;
}

.booking-calendar-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0e7490;
}

.booking-calendar-loading[hidden] {
  display: none !important;
}

.booking-calendar iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #ffffff;
}

.booking-gate {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1.75rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(6, 182, 212, 0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #ecfeff 55%, #f8fafc 100%);
}

.booking-gate[hidden] {
  display: none !important;
}

.booking-gate-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0f172a;
}

.booking-gate-note {
  margin: 0;
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  overflow-wrap: break-word;
}

.booking-noscript {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: #ecfeff;
  color: #0e7490;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  overflow-wrap: break-word;
}

.booking-calendar-help {
  margin: 0;
  padding: 0.85rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(203, 213, 225, 0.85);
  background: #f8fafc;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  text-align: center;
  overflow-wrap: break-word;
}

.booking-calendar-help[hidden] {
  display: none !important;
}

.booking-calendar-help a {
  font-weight: 600;
  color: #0e7490;
  text-decoration: none;
}

.booking-calendar-help a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.booking-calendar-help a:focus-visible {
  outline: 2px solid #0e7490;
  outline-offset: 2px;
}

.booking-calendar .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-contact {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
}

.booking-contact a {
  font-weight: 600;
  color: #0e7490;
  text-decoration: none;
  transition: color 0.2s ease;
}

.booking-contact a:hover {
  color: #06b6d4;
}

.booking-contact a:focus-visible {
  outline: 2px solid #0e7490;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .booking-calendar {
    min-height: 520px;
    border-radius: 1.5rem;
  }

  .booking-calendar iframe {
    height: 640px;
  }
}
