/* ============================================================
   STRIP CLUB REGISTRATION — WIZARD CSS
============================================================ */

/* ============================================================
   THEME ROOT
============================================================ */
:root {
  --bg: #0d0f16;
  --card: #141722;
  --ink: #f7f7fb;
  --muted: #9aa0ac;
  --line: #272a38;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(0,0,0,0.45);

  --gold-grad: linear-gradient(135deg,#e8c789,#d4a663,#f0d79b);
  --gold-soft: rgba(230,190,120,0.25);
}

/* ============================================================
   BASE
============================================================ */
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.wizard-page {
  min-height: 100vh;
}

/* ============================================================
   WIZARD WRAPPER
============================================================ */
.wizard-wrap {
  width: 100%;
  min-height: 100vh;
  padding: 80px 16px 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ============================================================
   WIZARD CARD
============================================================ */
.wizard-card {
  width: 100%;
  max-width: 780px;
  padding: 40px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  position: absolute;
  left: 50%;
  top: 60px;

  transform: translateX(-50%) translateY(40px);
  opacity: 0;
  pointer-events: none;

  transition: opacity .45s ease, transform .45s ease;
}

.wizard-card.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ============================================================
   HEADINGS
============================================================ */
.wizard-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 14px;
  text-align: center;
}

.wizard-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 6px;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(232,199,137,.55);
}

/* ============================================================
   FORM LAYOUT
============================================================ */
.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.field {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink);
}

/* ============================================================
   INPUTS
============================================================ */
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0f111b;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #e8c789;
}

textarea {
  resize: none;
  height: 135px;
}

/* ============================================================
   SELECT FIX
============================================================ */
select {
  background: #0f111b;
  color: #fff;
}

select option {
  background: #0f111b;
  color: #fff;
}

/* ============================================================
   CHECKBOXES
============================================================ */
input[type="checkbox"] {
  width: auto;
  accent-color: #e8c789;
  cursor: pointer;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px,1fr));
  gap: 12px 20px;
  margin-bottom: 20px;
}

.services-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* ============================================================
   FILE UPLOAD
============================================================ */
.file-box {
  padding: 20px;
  background: #11131d;
  border-radius: 12px;
  border: 1px dashed var(--line);
  margin-bottom: 22px;
}

.file-box label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ============================================================
   BUTTONS
============================================================ */
.step-actions {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-gold {
  background: var(--gold-grad);
  color: #000;
  box-shadow: 0 14px 30px var(--gold-soft);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(240,220,160,.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 768px) {

  .wizard-card {
    max-width: 95%;
    padding: 28px;
  }

  .form-row {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  }

  .wizard-title {
    font-size: 24px;
  }

  .wizard-title::after {
    width: 48px;
    height: 2.5px;
  }
}

/* ============================================================
   JS VALIDATION & LOADING STATES
============================================================ */
.field-error {
  border-color: #e5533d !important;
  box-shadow: 0 0 0 1px rgba(229,83,61,.35);
}

.step-error {
  background: rgba(229,83,61,.12);
  border-left: 4px solid #e5533d;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
}

button.loading {
  opacity: .75;
  pointer-events: none;
}
