:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #64748b;
  --line: #dce8f5;
  --panel: #ffffff;
  --page: #f4f9ff;
  --blue: #0866f5;
  --blue-strong: #0051d4;
  --blue-pale: #eef7ff;
  --shadow: 0 20px 52px rgba(15, 65, 120, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--page) 100%);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

.booking-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 0;
}

.booking-panel,
.booking-status section,
.result-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: 28px;
}

.booking-head {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.booking-logo {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: 36px;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

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

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

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  min-height: 44px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.check-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.check-row input {
  min-height: 20px;
  margin-top: 2px;
}

button {
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 102, 245, 0.2);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.booking-status section {
  padding: 22px;
}

.result-card {
  display: grid;
  gap: 10px;
}

.result-card strong {
  color: var(--blue-strong);
}

@media (max-width: 860px) {
  .booking-shell,
  .booking-head,
  .form-grid,
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .booking-logo {
    width: 210px;
  }
}
