:root {
  --bg: #061225;
  --panel: #0b1b35;
  --panel-2: #102541;
  --text: #f3f7ff;
  --muted: #9cacc1;
  --line: rgba(151, 183, 226, 0.2);
  --blue: #3763ff;
  --cyan: #08bfd4;
  --success: #54e6a0;
  --danger: #ff9c9c;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 6%, rgba(55, 99, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 95% 30%, rgba(8, 191, 212, 0.1), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  background: #fff;
  color: #061225;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.booking-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 18, 37, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner,
.booking-shell,
.booking-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  width: min(250px, 56vw);
}

.brand-link img {
  display: block;
  width: 100%;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-links a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
}

.header-links a:hover,
.header-links a:focus-visible { background: rgba(255, 255, 255, 0.08); }

.language-link { border: 1px solid var(--line); }

.booking-shell { padding: clamp(3rem, 7vw, 6.5rem) 0 5rem; }

.booking-intro {
  max-width: 830px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: #73eaf5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0.35rem rgba(8, 191, 212, 0.13);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro-copy {
  max-width: 720px;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.consultation-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-facts li {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 37, 65, 0.78);
  color: #c6d5e9;
  font-size: 0.9rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: 112px;
}

.booking-aside h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.booking-aside > p { color: var(--muted); }

.booking-steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-step;
}

.booking-steps li {
  position: relative;
  min-height: 3.1rem;
  padding-left: 4rem;
  color: #c6d5e9;
  counter-increment: booking-step;
}

.booking-steps li::before {
  content: "0" counter(booking-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(8, 191, 212, 0.45);
  border-radius: 0.8rem;
  background: rgba(8, 191, 212, 0.09);
  color: #73eaf5;
  font-size: 0.77rem;
  font-weight: 900;
}

.direct-contact {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(16, 37, 65, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
}

.direct-contact a {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.booking-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid rgba(76, 153, 255, 0.32);
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(16, 37, 65, 0.97), rgba(8, 27, 52, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.booking-card::before {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  top: -9rem;
  right: -6rem;
  border-radius: 50%;
  background: rgba(8, 191, 212, 0.16);
  filter: blur(2px);
  pointer-events: none;
}

.form-heading { position: relative; margin-bottom: 1.8rem; }

.form-heading span {
  color: #73eaf5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.form-heading h2 {
  margin: 0.35rem 0 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
}

.form-heading p { margin-bottom: 0; color: var(--muted); }

.form-status {
  display: none;
  margin-bottom: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  font-weight: 700;
}

.form-status.is-visible { display: block; }
.form-status.is-success { border: 1px solid rgba(84, 230, 160, 0.5); background: rgba(84, 230, 160, 0.09); color: var(--success); }
.form-status.is-error { border: 1px solid rgba(255, 156, 156, 0.45); background: rgba(255, 156, 156, 0.08); color: var(--danger); }

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

.field {
  display: grid;
  gap: 0.45rem;
  color: #c6d5e9;
  font-size: 0.88rem;
  font-weight: 700;
}

.field-wide { grid-column: 1 / -1; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(151, 183, 226, 0.25);
  border-radius: 0.72rem;
  outline: none;
  background: #07172c;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 0.78rem 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea { min-height: 7.2rem; resize: vertical; }
.field select { color-scheme: dark; }
.field option { background: #07172c; color: #fff; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(8, 191, 212, 0.12);
}

.field input::placeholder,
.field textarea::placeholder { color: #71819a; opacity: 1; }

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

.privacy-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.14rem 0 0;
  accent-color: var(--cyan);
}

.privacy-check a { color: #dce8fa; }

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.45rem;
}

.form-footer button {
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(55, 99, 255, 0.24);
}

.form-footer button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.form-footer button:focus-visible { outline: 3px solid rgba(115, 234, 245, 0.5); outline-offset: 3px; }
.form-footer small { max-width: 20rem; color: var(--muted); }

.booking-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 820px) {
  .header-links .back-label { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .booking-aside > p { max-width: 650px; }
  .booking-steps { grid-template-columns: repeat(3, 1fr); }
  .booking-steps li { padding: 3.6rem 0 0; }
}

@media (max-width: 620px) {
  .header-inner,
  .booking-shell,
  .booking-footer { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand-link { width: 178px; }
  .header-links { gap: 0.35rem; }
  .header-links a { padding: 0.55rem 0.7rem; }
  .booking-shell { padding-top: 2.8rem; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.4rem); }
  .booking-steps { grid-template-columns: 1fr; }
  .booking-steps li { min-height: 3rem; padding: 0 0 0 3.8rem; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .field-wide,
  .privacy-check,
  .form-footer { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer button { width: 100%; }
  .booking-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

