/* ===== BOOKINGS PAGE ===== */
.bookings-page {
  background: #f5f7fb;
  min-height: 100%;
}

.bookings-page__side {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: transparent;
  box-sizing: border-box;
  animation: bookings-panel-fade 0.6s ease-out forwards;
  opacity: 0;
}

.bookings-page__side.is-visible {
  opacity: 1;
}

.bookings-page__side-inner {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(12, 35, 64, 0.14);
  border: 1px solid #eef2f8;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bookings-page__hero {
  background: linear-gradient(135deg, #1f3c68 0%, #0b1f33 100%);
  color: #ffffff;
  padding: clamp(2.5rem, 8vw, 4rem) 1.5rem;
  background-size: 200% 200%;
  animation: bookings-hero-shift 18s ease infinite;
}

.bookings-page__hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bookings-page__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.78;
}

.bookings-page__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
}

.bookings-page__subtitle {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.bookings-page__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.bookings-page__section {
  max-width: 1100px;
  margin: clamp(-3.5rem, -6vw, -2.5rem) auto 3.5rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.bookings-page .booking-form__wrapper {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(12, 35, 64, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2rem, 4vw, 3rem);
}

.bookings-page__main-content {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid #eef2f8;
}

.bookings-page__steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.bookings-page__step-link {
  background: rgba(31, 60, 104, 0.06);
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  color: #1f3c68;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bookings-page__step-link:hover,
.bookings-page__step-link:focus {
  background: rgba(241, 137, 50, 0.18);
  color: #f18932;
  box-shadow: 0 14px 28px rgba(241, 137, 50, 0.18);
}

.bookings-page__card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(12, 35, 64, 0.18);
  border: 1px solid rgba(12, 35, 64, 0.08);
}

.bookings-page__section-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #162941;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e5e7eb;
}

.bookings-page__section-subtitle {
  margin: 0 0 1.75rem;
  color: #607291;
  font-size: 0.95rem;
}

.bookings-page__field-grid {
  display: grid;
  gap: 1.75rem;
  row-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: dense;
}

.bookings-page__field {
  min-width: 220px;
}

.bookings-page__label,
.bookings-page__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4f617b;
  margin-bottom: 0.55rem;
}

.bookings-page__field input,
.bookings-page__field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #b9c1d1;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  box-sizing: border-box;
  background: #fdfefe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bookings-page__field input:focus,
.bookings-page__field select:focus {
  outline: none;
  border-color: #355d9d;
  box-shadow: 0 0 0 3px rgba(53, 93, 157, 0.25);
  transform: translateY(-1px);
}

.bookings-page__field--half {
  min-width: 0;
  grid-column: span 1;
}

.bookings-page__actions {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
}

.bookings-page__actions .button--primary {
  min-width: 200px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffb169 0%, #f18932 58%, #d26416 100%);
  box-shadow: 0 16px 28px rgba(241, 137, 50, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
}

.bookings-page__actions .button--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 212, 165, 0.25) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

@keyframes bookings-panel-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bookings-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}


.bookings-summary__group {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(12, 35, 64, 0.08);
  box-shadow: none;
  padding: 1.75rem;
  box-sizing: border-box;
}

.bookings-summary__group--muted {
  background: rgba(243, 248, 255, 0.9);
  border-color: rgba(30, 62, 108, 0.12);
  box-shadow: none;
}

.bookings-summary__group--muted .bookings-summary__title {
  color: #0f2c4d;
}

.bookings-summary__group + .bookings-summary__group {
  margin-top: 0.75rem;
}


.bookings-summary__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #112238;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.bookings-summary__group-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bookings-summary__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #1d2f47;
  font-weight: 600;
}

.bookings-summary__meta {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
}

.bookings-summary__meta li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.bookings-summary__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f8098;
}

.bookings-summary__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d2f47;
}

.bookings-summary__list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #40536c;
  line-height: 1.55;
  text-align: left;
  list-style: disc;
}

.bookings-summary__list li + li {
  margin-top: 0.65rem;
}

.bookings-summary__list li {
  font-size: 0.95rem;
  color: #2c3e59;
}

.bookings-page__label--required::after {
  content: '*';
  color: #d94a38;
  margin-left: 0.35rem;
}

.bookings-page__label--optional {
  color: #5d6c84;
}

.bookings-page__optional {
  font-size: 0.78rem;
  text-transform: none;
  color: #6f8098;
  font-weight: 500;
  margin-left: 0.35rem;
}

.bookings-page__field input::placeholder,
.bookings-page__field select::placeholder {
  color: rgba(82, 101, 129, 0.68);
}

.bookings-page__field input:disabled,
.bookings-page__field select:disabled {
  background: #f4f7fb;
  cursor: not-allowed;
}

.button--is-loading,
.bookings-page__actions .button--primary:disabled {
  filter: saturate(0.85);
  box-shadow: none;
  cursor: wait;
  outline: none;
}

.bookings-page__actions .button--primary:hover::after,
.bookings-page__actions .button--primary:focus-visible::after {
  opacity: 1;
}

.bookings-page__actions .button--primary:hover,
.bookings-page__actions .button--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 46px rgba(220, 111, 30, 0.42);
}

.bookings-page__hero-meta span {
  position: relative;
  padding-left: 1.35rem;
}

.bookings-page__hero-meta span::before {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}

.bookings-page__hero-meta span:first-child {
  padding-left: 0;
}

.bookings-page__hero-meta span:first-child::before {
  display: none;
}

@media (min-width: 992px) {
  .bookings-page .booking-form__wrapper {
    flex-direction: row;
    gap: 0;
  }

  .bookings-page__main-content {
    flex: 0 0 58%;
    border-right: 1px solid #eef2f8;
    border-bottom: none;
  }

  .bookings-page__side {
    flex: 0 0 42%;
    padding: clamp(2rem, 3vw, 2.6rem);
  }

  .bookings-page__side-inner {
    height: 100%;
  }

}

@media (max-width: 991px) {
  .bookings-page .booking-form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
  }

  .bookings-page__side {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .bookings-page__side-inner {
    max-width: 100%;
    padding: clamp(1.5rem, 6vw, 2.25rem);
  }

  .bookings-summary {
    margin-top: 0.75rem;
  }

  .bookings-page__actions {
    justify-content: center;
  }

  .bookings-page__actions .button--primary {
    width: min(100%, 320px);
  }
}

@media (max-width: 575px) {
  .bookings-page__hero {
    padding: 2.25rem 1.1rem 2.75rem;
  }

  .bookings-page__section {
    padding: 0 1rem;
    margin-top: -2.25rem;
  }

  .bookings-page__card {
    padding: 1.25rem;
  }

  .bookings-page__actions {
    justify-content: center;
  }

}

@keyframes bookings-hero-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bookings-page__field input:focus-visible,
.bookings-page__field select:focus-visible {
  outline: 2px solid #1e3a8a;
  outline-offset: 1px;
}
.bookings-page__actions .button--primary:focus-visible {
  outline: 2px solid #1e3a8a;
  outline-offset: 3px;
}
