:root {
  --booking-bg: #090b10;
  --booking-surface: rgba(14, 18, 26, 0.88);
  --booking-surface-strong: #11161f;
  --booking-border: rgba(214, 179, 106, 0.18);
  --booking-text: #f6f2e8;
  --booking-muted: rgba(246, 242, 232, 0.68);
  --booking-accent: #d6b36a;
  --booking-accent-strong: #f0ca82;
  --booking-success: #73d290;
  --booking-danger: #f18d8d;
  --booking-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at top left, rgba(214, 179, 106, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(72, 106, 158, 0.16), transparent 30%),
    linear-gradient(180deg, #090b10, #10131a 42%, #0a0c11);
  color: var(--booking-text);
}

.booking-section {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 44px;
}

.booking-hero,
.booking-process,
.booking-form-shell,
.booking-side-card,
.booking-success-card,
.booking-error-card {
  border-radius: 30px;
  border: 1px solid var(--booking-border);
  background: var(--booking-surface);
  box-shadow: var(--booking-shadow);
  backdrop-filter: blur(18px);
}

.booking-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(214, 179, 106, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--booking-surface);
}

.booking-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 179, 106, 0.18), transparent 66%);
  pointer-events: none;
}

.booking-kicker,
.booking-card-kicker,
.booking-field-label,
.booking-meta-label,
.booking-helper-card strong,
.booking-date-display {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.booking-kicker,
.booking-card-kicker,
.booking-field-label,
.booking-meta-label,
.booking-helper-card strong {
  color: var(--booking-accent);
}

.booking-hero h1,
.booking-process h2,
.booking-form-card h2,
.booking-side-card h3,
.thank-you-title,
.error-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
}

.booking-hero h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 0.95;
}

.booking-hero-copy,
.booking-process p,
.booking-side-card p,
.booking-info-list li,
.booking-form-intro,
.form-hint,
.package-info,
.gdpr-text,
.thank-you-text,
.error-text,
.success-note,
.booking-helper-card li,
.booking-date-display {
  color: var(--booking-muted);
  line-height: 1.7;
}

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

.booking-meta-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.booking-process {
  margin-top: 24px;
  padding: 32px;
}

.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.booking-step {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-step-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.14);
  color: var(--booking-accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.booking-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.booking-form-shell,
.booking-side-card {
  padding: 28px;
}

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

.booking-form-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 18px;
}

.booking-helper-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-helper-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

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

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

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

.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 16, 0.78);
  color: var(--booking-text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(214, 179, 106, 0.88) 50%),
    linear-gradient(135deg, rgba(214, 179, 106, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.booking-field textarea {
  min-height: 170px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
  border-color: rgba(214, 179, 106, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 179, 106, 0.14);
}

.package-info,
.booking-date-display {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(214, 179, 106, 0.1);
  border: 1px solid rgba(214, 179, 106, 0.16);
}

.booking-date-display {
  color: rgba(255, 255, 255, 0.86);
}

.gdpr-row {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.consent-stack {
  display: grid;
  gap: 12px;
}

.gdpr-row.is-optional {
  background: rgba(214, 179, 106, 0.06);
  border-color: rgba(214, 179, 106, 0.14);
}

.gdpr-checkbox {
  display: flex;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}

.gdpr-text {
  color: var(--booking-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.consent-helper {
  display: block;
  margin-top: 6px;
  color: rgba(246, 242, 232, 0.58);
  font-size: 0.82rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.55;
}

.gdpr-checkbox input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(214, 179, 106, 0.65);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.gdpr-checkbox input:checked + .checkmark {
  background: linear-gradient(135deg, var(--booking-accent), var(--booking-accent-strong));
  border-color: transparent;
}

.gdpr-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

.gdpr-text a {
  color: var(--booking-accent);
}

.cta-btn,
.booking-side-btn,
.success-btn,
.error-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cta-btn,
.success-btn {
  background: linear-gradient(135deg, var(--booking-accent), var(--booking-accent-strong));
  color: #16120c;
  box-shadow: 0 18px 36px rgba(214, 179, 106, 0.24);
}

.booking-side-btn,
.error-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--booking-text);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-btn:hover,
.booking-side-btn:hover,
.success-btn:hover,
.error-btn:hover {
  transform: translateY(-1px);
}

.cta-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.booking-side-card {
  display: grid;
  gap: 20px;
}

.booking-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.booking-info-list li {
  position: relative;
  padding-left: 18px;
}

.booking-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--booking-accent);
}

.booking-side-meta {
  display: grid;
  gap: 14px;
}

.booking-side-meta div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-side-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.booking-success,
.booking-error {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 10, 0.86);
  backdrop-filter: blur(10px);
  z-index: 99999;
  padding: 20px;
}

.booking-success.show,
.booking-error.show {
  display: flex;
}

.booking-success-card,
.booking-error-card {
  width: min(460px, 100%);
  padding: 34px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(214, 179, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(18, 23, 34, 0.96), rgba(12, 16, 23, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.success-eyebrow {
  margin: 0 0 14px;
  color: rgba(214, 179, 106, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.success-icon,
.error-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.success-icon {
  background: rgba(115, 210, 144, 0.16);
  color: var(--booking-success);
}

.error-icon {
  background: rgba(241, 141, 141, 0.16);
  color: var(--booking-danger);
}

.thank-you-title,
.error-title {
  font-size: 1.4rem;
}

.thank-you-text,
.error-text {
  max-width: 34ch;
  margin: 0 auto;
}

.success-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.success-next-block {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.success-next-title {
  margin: 0 0 10px;
  color: rgba(214, 179, 106, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.success-next-copy {
  margin: 0;
  color: var(--booking-muted);
  line-height: 1.65;
}

.success-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.success-link-btn {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #16120c;
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.96), rgba(240, 203, 133, 0.96));
  box-shadow: 0 18px 42px rgba(214, 179, 106, 0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.success-link-btn.is-secondary {
  color: var(--booking-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.success-link-btn:hover {
  transform: translateY(-1px);
}

.success-btn,
.error-btn {
  min-width: 180px;
}

.success-btn {
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.96), rgba(240, 203, 133, 0.96));
  color: #16120c;
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(214, 179, 106, 0.22);
}

.error-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f6f2e8;
}

.footer {
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .booking-process-grid,
  .booking-hero-meta,
  .booking-form-head {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .booking-section {
    width: min(100% - 20px, 1380px);
    padding-top: 108px;
  }

  .booking-hero,
  .booking-process,
  .booking-form-shell,
  .booking-side-card,
  .booking-success-card,
  .booking-error-card {
    padding: 24px;
  }

  .success-btn,
  .error-btn,
  .success-link-btn {
    width: 100%;
    min-width: 0;
  }

  .booking-form-grid,
  .booking-process-grid,
  .booking-hero-meta,
  .booking-form-head {
    grid-template-columns: 1fr;
  }
}
