.wizard-wrap{
  width:min(760px,92vw);
  margin:0 auto;
  padding:48px 0 72px;
}

.step-track{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:32px;
}

.step-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.step-circle{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.02);
  color:var(--text-muted);
  font-weight:700;
  transition:.22s ease;
}

.step-circle.active{
  border-color:var(--accent);
  color:var(--accent);
  box-shadow:0 0 0 6px rgba(232,169,74,0.08);
}

.step-circle.done{
  background:var(--accent);
  border-color:var(--accent);
  color:#201708;
}

.step-lbl{
  color:var(--text-muted);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.step-lbl.active{color:var(--accent)}
.step-line{flex:1;height:1px;margin-top:20px;background:var(--border)}
.step-line.done{background:var(--accent)}

.wstep{
  display:none;
  padding:32px;
  border:1px solid var(--border);
  border-radius:30px;
  background:var(--bg-card);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow);
}

.wstep.active{
  display:block;
  animation:fadeIn .28s ease;
}

.wstep-title{
  font-size:clamp(28px,3vw,40px);
  line-height:1.05;
  font-family:var(--font-display);
}

.wstep-sub{
  margin-top:10px;
  margin-bottom:24px;
  color:var(--text-soft);
}

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

.fgrp{margin-bottom:18px}

.flbl{
  display:block;
  margin-bottom:10px;
  color:var(--accent-strong);
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.finput,
.fselect,
.ftextarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,0.03);
  color:var(--text);
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

.finput:focus,
.fselect:focus,
.ftextarea:focus{
  border-color:var(--accent-border);
  background:rgba(255,255,255,0.05);
  box-shadow:0 0 0 4px rgba(232,169,74,0.08);
}

.ftextarea{resize:vertical;min-height:96px}

.date-prev{
  display:none;
  margin:8px 0 18px;
  padding:14px 16px;
  border:1px solid var(--accent-border);
  border-radius:16px;
  background:var(--accent-soft);
  color:var(--text-soft);
}

.nights-badge{
  display:inline-flex;
  margin-left:10px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(11,20,31,0.78);
  color:var(--accent-strong);
  font-size:12px;
  font-weight:700;
}

.budget-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.bcard{
  padding:18px 12px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  text-align:center;
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}

.bcard:hover{transform:translateY(-2px);border-color:var(--accent-border)}
.bcard.on{background:var(--accent-soft);border-color:var(--accent)}
.bcard-icon{font-size:24px}
.bcard-lbl{margin-top:8px;font-weight:700}

.err-msg{
  margin-top:6px;
  margin-bottom:18px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(161,65,65,0.18);
  border:1px solid rgba(255,120,120,0.28);
  color:#ffd6d6;
}

.wbtns{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:24px;
}

.btn-prev,
.btn-next{
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:transform .18s ease,opacity .18s ease;
}

.btn-prev{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
}

.btn-next{
  background:linear-gradient(135deg,var(--accent) 0%,#f3c36d 100%);
  color:#1b1408;
  box-shadow:0 16px 36px rgba(232,169,74,0.2);
}

.btn-prev:hover,
.btn-next:hover{transform:translateY(-1px)}

.loading-wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  text-align:center;
  gap:22px;
  padding:40px 20px;
}

.loader-ring{
  width:96px;
  height:96px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.08);
  display:grid;
  place-items:center;
  background:rgba(11,20,31,0.62);
  box-shadow:var(--shadow);
}

.loader-dot{
  width:24px;
  height:24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent) 0%,#f3c36d 100%);
  animation:drift 1.6s ease-in-out infinite;
}

.loader-msg{
  font-size:22px;
  font-weight:700;
  transition:opacity .2s ease;
}

.loader-steps{
  display:flex;
  justify-content:center;
  gap:10px;
}

.ldot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.18);
}

.ldot.active{
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(232,169,74,0.08);
}
