.booking-page {
  background:
    radial-gradient(circle at top left, rgba(95, 214, 255, 0.12), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(215, 25, 32, 0.1), transparent 18%),
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 34%, #f2f5f8 100%);
}

.booking-page .titleist-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.booking-main {
  padding: 48px 0 0;
}

.booking-form-card,
.booking-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.94)),
    #ffffff;
  box-shadow:
    0 28px 72px rgba(11, 23, 38, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.74) inset;
}

.booking-form-card::before,
.booking-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 34%, transparent 72%, rgba(95, 214, 255, 0.08)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 32%);
  pointer-events: none;
}

.booking-form-card {
  padding: 34px;
}

.booking-form-card--primary {
  margin-bottom: 26px;
}

.booking-intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.booking-intro-strip span,
.booking-choice legend,
.booking-guide-inline strong {
  font-family: var(--headline);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-intro-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(247, 249, 252, 0.94);
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-section-head {
  margin-bottom: 22px;
}

.booking-section-head h2,
.booking-cta-card h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #111111;
}

.booking-section-head--compact h2 {
  margin-bottom: 10px;
}

.booking-form-card__lead,
.booking-guide-inline p,
.booking-field-note,
.booking-cta-card p,
.booking-form__actions p {
  margin: 0;
  color: var(--muted);
}

.booking-field-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(247, 249, 252, 0.94);
  font-size: 0.92rem;
  line-height: 1.7;
}

.booking-field-note a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.booking-guide-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.booking-guide-inline article {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: linear-gradient(180deg, rgba(250, 251, 253, 0.98), rgba(244, 247, 250, 0.98));
}

.booking-guide-inline strong {
  display: block;
  margin-bottom: 10px;
  color: #111111;
  font-size: 0.8rem;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field span,
.booking-choice legend {
  color: #111111;
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 20px;
  background: #fbfcfd;
  color: #111111;
  padding: 15px 16px;
  resize: vertical;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: rgba(95, 214, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(95, 214, 255, 0.14);
  background: #ffffff;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-choice {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #f7f8fa;
}

.booking-form-status {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.95rem;
  line-height: 1.8;
}

.booking-form-status--success {
  background: rgba(6, 199, 85, 0.08);
  border-color: rgba(6, 199, 85, 0.22);
  color: #0b7e3b;
}

.booking-form-status--error {
  background: rgba(215, 25, 32, 0.08);
  border-color: rgba(215, 25, 32, 0.22);
  color: #a2191f;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.booking-button:hover,
.reservation-cta:hover {
  transform: translateY(-2px);
}

.booking-button--line-solid {
  background: #06c755;
  border-color: #06c755;
  color: #ffffff;
}

.booking-button--line-solid:hover {
  background: #00af4a;
  color: #ffffff;
}

.booking-button--ghost {
  background: transparent;
}

.booking-button--ghost-light {
  background: rgba(17, 28, 42, 0.46);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.booking-button--ghost-light:hover {
  background: rgba(17, 28, 42, 0.64);
  color: #ffffff;
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.booking-form__actions .reservation-cta {
  border: 0 !important;
}

.booking-line-copy {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.booking-line-copy p {
  margin: 0;
}

.booking-line-copy__field {
  display: grid;
  gap: 8px;
}

.booking-line-copy__field span {
  color: #111111;
  font-weight: 700;
  font-size: 0.88rem;
}

.booking-line-copy__field textarea {
  width: 100%;
  min-height: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #fbfcfd;
  color: #111111;
  font: inherit;
  line-height: 1.7;
  resize: vertical;
}

.booking-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.booking-cta-card {
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-cta-card--line {
  background:
    linear-gradient(135deg, rgba(244, 255, 248, 0.98), rgba(238, 250, 243, 0.95)),
    #ffffff;
}

.booking-cta-card--phone {
  background:
    linear-gradient(135deg, rgba(255, 248, 246, 0.98), rgba(251, 242, 239, 0.95)),
    #ffffff;
}

.booking-cta-card strong {
  display: block;
  margin-top: auto;
  font-family: var(--headline);
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1;
  color: #111111;
}

.booking-cta-card .booking-button {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 920px) {
  .booking-main,
  .booking-form__grid,
  .booking-guide-inline,
  .booking-cta-row {
    grid-template-columns: 1fr;
  }

  .booking-form-card,
  .booking-cta-card {
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  .booking-main {
    padding-top: 28px;
  }

  .booking-form-card,
  .booking-cta-card {
    padding: 24px;
  }

  .booking-section-head h2,
  .booking-cta-card h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .booking-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-button,
  .booking-form__actions .reservation-cta {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .booking-choice {
    flex-direction: column;
  }
}
