/* ============================================
   FORMS — Apply page, contact page
   ============================================ */

/* ── Step progress bar ── */
.step-bar { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.step     { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
  transition: all .2s; flex-shrink: 0;
}
.step.active .step-num,
.step.done  .step-num { border-color: var(--blue); background: var(--blue); color: #fff; }
.step-label { font-size: .75rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.step.active .step-label { color: #fff; }
.step-line  { width: 40px; height: 2px; background: var(--border); margin: 0 4px; flex-shrink: 0; }
.step-line.done { background: var(--blue); }

/* ── Form sections ── */
.form-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── Form grid ── */
.form-row       { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field-group    { display: flex; flex-direction: column; gap: 6px; }

/* ── Nav buttons ── */
.nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }

/* ── Success screen ── */
.success-screen { text-align: center; padding: 60px 20px; }
.success-icon   { font-size: 4rem; color: var(--blue); margin-bottom: 20px; }

/* ── Contact info rows ── */
.info-row  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.info-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border: 1px solid rgba(96,165,250,.3);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
}
.info-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-value { color: #fff; font-weight: 500; font-size: .9rem; }
.info-value a       { color: #fff; transition: color .2s; }
.info-value a:hover { color: var(--blue); }

/* ── Hours (contact page) ── */
.day-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
}
.day-row:last-child { border-bottom: none; }
.day-row .day   { color: var(--muted); }
.day-row .time  { color: #fff; font-weight: 500; }
.day-row .today { color: var(--blue); font-weight: 600; }

/* ── Success message ── */
.success-msg {
  background: #0d2818;
  border: 1px solid #276749;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--success);
  font-size: .85rem;
  display: none;
  margin-top: 12px;
}

/* ── Map placeholder ── */
.map-placeholder {
  background: var(--inset-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  overflow: hidden;
  margin-bottom: 16px;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; filter: brightness(.85) saturate(.7); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .form-row.cols-2,
  .form-row.cols-3 { grid-template-columns: 1fr; }
  .step-label      { display: none; }
}
