* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Poppins", sans-serif;
  color: #ffffff;
  background: linear-gradient(180deg, #6b4c9a 0%, #07365c 57.4%, #092943 96.41%);
  overflow-x: hidden;
}

.rebrand-banner {
  width: 100%;
  background: linear-gradient(90deg, #603f83 0%, #0e436f 100%);
  color: #ffffff;
  padding: 12px 24px;
  text-align: center;
}

.rebrand-banner-text {
  margin: 0 auto;
  max-width: 960px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.booking-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 72px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.back-link:hover {
  opacity: 1;
}

.booking-layout {
  display: flex;
  gap: 26px;
  align-items: flex-end;
}

.left-column {
  width: 512px;
}

.booking-header h1 {
  margin: 0 0 20px;
  font-size: 58px;
  line-height: 1.05;
}

.booking-header p {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.62;
}

.booking-header ul {
  margin: 18px 0 17px;
  padding-left: 0;
  list-style: none;
}

.booking-header li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 24px;
}

.booking-header li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.booking-alerts {
  margin-bottom: 16px;
}

.booking-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.booking-alert-success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.65);
}

.booking-alert-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.65);
}

.info-card,
.right-column {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card {
  width: 100%;
  padding: 26px 24px 28px;
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field span {
  font-size: 14px;
  font-weight: 500;
}

.field input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 0.8px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  padding: 12px 16px;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.primary-button {
  margin-top: 24px;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 10px;
  background: #6b4c9a;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.primary-button:hover {
  background: #7d5ab3;
}

.right-column {
  width: 363px;
  padding: 24px 20px;
}

.panel-block + .panel-block {
  margin-top: 28px;
}

.panel-block h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 600;
}

.calendar-card {
  border-radius: 10px;
  border: 0.8px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar-header strong {
  font-size: 14px;
  line-height: 20px;
}

.nav-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 8px;
}

.weekdays span {
  text-align: center;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 0;
}

.day {
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.day.muted {
  opacity: 0.25;
  cursor: default;
}

.day.selected {
  background: #6b4c9a;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.time-btn {
  height: 51px;
  border-radius: 10px;
  border: 0.8px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.time-btn.selected {
  background: #6b4c9a;
  border-color: transparent;
}

.booking-email {
  margin: 38px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.booking-email a {
  color: #ffffff;
}

@media (max-width: 980px) {
  .booking-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .booking-header h1 {
    font-size: clamp(40px, 8vw, 58px);
  }

  .primary-button {
    font-size: 22px;
  }

  .rebrand-banner {
    padding: 10px 16px;
  }

  .rebrand-banner-text {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .booking-page {
    padding: 32px 16px 56px;
  }

  .right-column {
    padding-inline: 16px;
  }

  .time-grid {
    grid-template-columns: 1fr;
  }

  .info-card h2 {
    font-size: 24px;
  }

  .primary-button {
    font-size: 18px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .booking-header h1 {
    font-size: 34px;
  }

  .booking-header p {
    font-size: 16px;
  }

  .day {
    height: 32px;
    font-size: 13px;
  }
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 8px 0 16px;
}
