/* ═══════════════════════ CONTACT WIZARD ═══════════════════════ */

.contact-page { background: var(--bg); }
.contact-hero { padding-bottom: 40px; }

.cw-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 64px 120px;
}
@media (max-width: 768px) {
  .cw-wrap { padding: 0 24px 80px; }
}

/* ─── Stepper ─────────────────────────────────────────────────── */
.cw-stepper {
  display: flex; align-items: center; gap: 0;
  margin: 0 0 48px 0; padding: 0;
  list-style: none;
}
.cw-step {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: .05em;
  flex: 1; min-width: 0;
}
.cw-step:not(:last-child)::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line-soft);
  margin: 0 12px;
}
.cw-step.is-current::not(:last-child)::after,
.cw-step.is-done + .cw-step::before { background: var(--ink); }
.cw-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  font-weight: 500;
  flex: none;
  transition: background .25s, color .25s, border-color .25s;
}
.cw-step.is-current .cw-step-num {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.cw-step.is-done .cw-step-num {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.cw-step-lbl {
  text-transform: uppercase;
  white-space: nowrap;
}
.cw-step.is-current .cw-step-lbl,
.cw-step.is-done .cw-step-lbl { color: var(--ink); }
@media (max-width: 600px) {
  .cw-step-lbl { display: none; }
  .cw-step:not(:last-child)::after { margin: 0 8px; }
}

/* ─── Form / panes ────────────────────────────────────────────── */
.cw-form {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 40px;
}
@media (max-width: 600px) {
  .cw-form { padding: 28px 20px; }
}

.cw-pane {
  display: none;
  animation: cw-fade-in .35s cubic-bezier(.2,.7,.3,1);
}
.cw-pane.is-active { display: block; }

@keyframes cw-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cw-h2 {
  font-family: var(--ff-sans);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.cw-h2 em {
  font-family: var(--ff-display); font-style: italic;
  font-weight: 400; color: var(--accent);
}
.cw-pane-sub {
  font-size: 15px; color: var(--ink-dim);
  margin-bottom: 28px; line-height: 1.5;
}

/* ─── Options (clickable cards) ──────────────────────────────── */
.cw-options {
  display: grid; gap: 12px;
  margin-top: 24px;
}
/* Opties altijd onder elkaar (1 kolom) */
.cw-options-2 { grid-template-columns: 1fr; }
.cw-options-grid { grid-template-columns: 1fr; }

.cw-opt {
  display: flex; flex-direction: column;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color .2s, background .2s, transform .15s;
  position: relative;
  gap: 4px;
}
.cw-opt:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.cw-opt.is-selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cw-opt.is-selected .cw-opt-desc { color: rgba(245,243,238,.7); }
.cw-opt-title { font-size: 15px; font-weight: 500; line-height: 1.3; }
.cw-opt-desc  { font-size: 13px; color: var(--ink-muted); line-height: 1.4; }
.cw-opt-arrow {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-mono); font-size: 18px;
  color: var(--ink-muted); opacity: 0; transition: opacity .2s, transform .2s;
}
.cw-opt:hover .cw-opt-arrow { opacity: .5; transform: translateY(-50%) translateX(2px); }
.cw-opt.is-selected .cw-opt-arrow { color: var(--bg); opacity: 1; }
.cw-opt-wide { grid-column: 1 / -1; }

/* ─── Calendar ────────────────────────────────────────────────── */
.cw-cal {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 16px;
  margin-top: 8px;
}
.cw-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cw-cal-range {
  font-family: var(--ff-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-dim);
}
.cw-cal-nav {
  background: none; border: 1px solid var(--line-soft);
  width: 32px; height: 32px; border-radius: 4px;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: border-color .2s, background .2s;
}
.cw-cal-nav:hover { border-color: var(--ink); background: var(--bg-2); }
.cw-cal-nav:disabled { opacity: .35; cursor: not-allowed; }

.cw-cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.cw-cal-day {
  background: none; border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 10px 4px;
  cursor: pointer;
  font-family: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: border-color .2s, background .2s;
}
.cw-cal-day:hover:not(:disabled) { border-color: var(--ink); }
.cw-cal-day:disabled { opacity: .35; cursor: not-allowed; }
.cw-cal-day.is-selected {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.cw-cal-day-wd {
  font-family: var(--ff-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-muted);
}
.cw-cal-day.is-selected .cw-cal-day-wd { color: rgba(245,243,238,.6); }
.cw-cal-day-num {
  font-family: var(--ff-display); font-size: 20px; font-weight: 400;
  line-height: 1;
}
.cw-cal-day-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  opacity: 0;
}
.cw-cal-day.has-slots .cw-cal-day-dot { opacity: 1; }

.cw-cal-slots {
  display: flex; flex-wrap: wrap; gap: 8px;
  min-height: 60px;
}
.cw-cal-slot {
  background: var(--bg-2); border: 1px solid var(--line-soft);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--ff-mono); font-size: 13px;
  cursor: pointer; transition: all .2s;
}
.cw-cal-slot:hover { border-color: var(--ink); background: var(--bg); }
.cw-cal-slot.is-selected {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.cw-cal-empty {
  font-size: 14px; color: var(--ink-muted); padding: 16px 0;
  font-style: italic;
}

.cw-selected-slot {
  margin-top: 16px; padding: 12px 16px;
  background: rgba(15,123,79,.08);
  border: 1px solid rgba(15,123,79,.25);
  border-radius: 4px;
  display: flex; gap: 10px; align-items: center;
}
.cw-selected-lbl {
  font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent);
}
.cw-selected-val { font-size: 14px; color: var(--ink); }

/* ─── Personal info form ──────────────────────────────────────── */
.cw-fields {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 12px;
}
.cw-fld-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .cw-fld-row { grid-template-columns: 1fr; }
}
.cw-fld { display: flex; flex-direction: column; gap: 6px; }
.cw-fld label {
  font-family: var(--ff-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-muted);
}
.cw-fld input {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-soft); border-radius: 4px;
  color: var(--ink);
  transition: border-color .2s;
}
.cw-fld input:focus {
  outline: none; border-color: var(--ink);
}

.cw-error {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(220,38,38,.08); border-left: 2px solid #b91c1c;
  color: #7f1d1d; font-size: 13px; line-height: 1.45;
}

/* ─── Nav buttons ─────────────────────────────────────────────── */
.cw-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.cw-back { margin-right: auto; }

/* ─── Success pane ────────────────────────────────────────────── */
.cw-pane-success { text-align: center; padding: 24px 0; }
.cw-success-mark {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  font-size: 32px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  animation: cw-success-pop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes cw-success-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cw-success-msg {
  font-size: 16px; color: var(--ink-dim); line-height: 1.5;
  margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto;
}
