/* ============================================================
   Apply Portal Styles — Express Kenyan Visa Plus
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a2744;
  --navy-light: #223060;
  --orange: #e87722;
  --orange-light: #f4924a;
  --cream: #f0f2f5;
  --white: #ffffff;
  --text-dark: #1a2744;
  --text-mid: #4a5568;
  --text-light: #718096;
  --success: #22c55e;
  --error: #ef4444;
  --border: #e2e8f0;

  /* Status colours */
  --s-received: #e87722;
  --s-paid: #3b82f6;
  --s-review: #8b5cf6;
  --s-processing: #f59e0b;
  --s-ready: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  min-height: 100vh;
}

/* ── APPLY NAV ── */
.apply-nav {
  background: var(--navy);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.apply-nav-logo img {
  height: 38px;
}

.apply-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.apply-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.apply-nav-links a:hover {
  color: #fff;
}

.apply-nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.apply-nav-user .avatar {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}

.nav-logout {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.nav-logout:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

/* ── LAYOUT ── */
.apply-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.apply-wrap.narrow {
  max-width: 520px;
}

/* ── PAGE TITLE ── */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 6px;
}

.page-sub {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 36px;
}

/* ── AUTH CARD ── */
.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.auth-card .brand {
  text-align: center;
  margin-bottom: 32px;
}

.auth-card .brand img {
  height: 44px;
  margin-bottom: 12px;
}

.auth-card .brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.auth-card .brand p {
  color: var(--text-mid);
  font-size: 14px;
}

/* Tabs */
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 32px;
}

.auth-tab {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  background: none;
}

.auth-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ── FORM ELEMENTS ── */
.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  transition: all 0.2s;
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.08);
}

.fg .help {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--cream);
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #e2e8f0;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-light);
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-light);
  font-size: 13px;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── ALERT BOX ── */
.alert {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert i {
  margin-top: 2px;
  flex-shrink: 0;
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-info {
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ── WIZARD STEPPER ── */
.wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 0;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ws-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.ws-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

.wizard-step.active .ws-circle {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2);
}

.wizard-step.active .ws-label {
  color: var(--navy);
}

.wizard-step.done .ws-circle {
  background: var(--success);
  color: #fff;
}

.wizard-step.done .ws-label {
  color: var(--text-mid);
}

.wizard-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  flex-shrink: 0;
}

.wizard-connector.done {
  background: var(--success);
}

/* ── STEP CARD ── */
.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.step-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card .step-sub {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 30px;
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.step-actions .btn-primary,
.step-actions .btn-secondary {
  width: auto;
  flex: 1;
}

/* ── SERVICE CARDS (Step 1) ── */
.svc-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.svc-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.svc-select-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: #fff;
}

.svc-select-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232, 119, 34, 0.1);
}

.svc-select-card.selected {
  border-color: var(--orange);
  background: #fff9f4;
}

.svc-select-card.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.svc-select-card .sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(232, 119, 34, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.svc-select-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.svc-select-card .sc-price {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}

.svc-select-card .sc-turn {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.svc-select-card .feat-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* ── SERVICE TABLE LAYOUT (Step 1) ── */
.svc-table-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
}

.svc-table th {
  background: #f8fafc;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.svc-table-row {
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
}

.svc-table-row:last-child {
  border-bottom: none;
}

.svc-table-row:hover {
  background: #f8fafc;
}

.svc-table-row.selected {
  background: #fff9f4;
}

.svc-table-row td {
  padding: 14px 18px;
  vertical-align: middle;
}

.str-radio {
  text-align: center;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  transition: all 0.2s;
}

.svc-table-row:hover .custom-radio {
  border-color: var(--orange-light);
}

.svc-table-row.selected .custom-radio {
  border-color: var(--orange);
  background: var(--orange);
}

.svc-table-row.selected .custom-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.str-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.str-icon {
  color: var(--orange);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.str-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.svc-table-row.selected .str-title {
  color: var(--orange);
}

.str-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  padding-left: 30px;
  line-height: 1.4;
}

.str-time {
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
}

.str-time i {
  color: var(--text-light);
  margin-right: 4px;
}

.str-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-align: right;
  white-space: nowrap;
}

.feat-badge-sm {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── UPLOAD ZONE (Step 2) ── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafbfc;
  margin-bottom: 20px;
}

.upload-zone.dragover {
  border-color: var(--orange);
  background: rgba(232, 119, 34, 0.05);
}

.upload-zone i {
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.upload-zone p {
  color: var(--text-mid);
  font-size: 14px;
}

.upload-zone span {
  color: var(--orange);
  font-weight: 600;
  cursor: pointer;
}

.upload-zone input[type="file"] {
  display: none;
}

.doc-list {
  list-style: none;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-dark);
}

.doc-item i.fa-file-pdf {
  color: #ef4444;
}

.doc-item i.fa-file-image {
  color: #3b82f6;
}

.doc-item i.fa-file {
  color: var(--text-mid);
}

.doc-item .doc-name {
  flex: 1;
  font-weight: 500;
}

.doc-item .doc-size {
  color: var(--text-light);
  font-size: 12px;
}

.doc-item .doc-del {
  color: var(--error);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 15px;
}

.doc-item .doc-del:hover {
  opacity: 0.7;
}

.doc-type-select {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--navy);
  background: #fff;
}

.upload-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.upload-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s;
}

/* ── PAYMENT (Step 3) ── */
.order-summary {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
}

.order-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.order-row:last-child {
  border-bottom: none;
}

.order-row .label {
  color: var(--text-mid);
}

.order-row .value {
  color: var(--navy);
  font-weight: 600;
}

.order-row.total .label {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.order-row.total .value {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.pay-methods-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.pay-method-badge {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pay-method-badge i {
  font-size: 20px;
  color: var(--navy);
}

.pay-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pay-secure i {
  color: var(--success);
}

/* ── STATUS TRACKER (Dashboard) ── */
.status-tracker {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 8px 0;
  overflow-x: auto;
  gap: 0;
}

.track-step {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 100px;
}

.track-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.track-step:last-child::before {
  display: none;
}

.track-step.done::before {
  background: var(--success);
}

.ts-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.track-step.done .ts-circle {
  background: var(--success);
  color: #fff;
}

.track-step.active .ts-circle {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2);
}

.ts-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

.track-step.done .ts-label {
  color: var(--success);
}

.track-step.active .ts-label {
  color: var(--navy);
}

/* ── APPLICATION CARD ── */
.app-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}

.app-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.app-ref {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.app-svc {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}

.app-date {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.status-badge.Received {
  background: rgba(232, 119, 34, 0.12);
  color: var(--orange);
}

.status-badge.Paid {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.status-badge\.In\ Review {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
}

.status-badge.Processing {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.status-badge.Ready {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.status-badge.draft {
  background: var(--cream);
  color: var(--text-mid);
}

.app-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.app-card-actions a,
.app-card-actions button {
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-view {
  background: var(--navy);
  color: #fff;
}

.btn-view:hover {
  background: var(--navy-light);
}

.btn-continue {
  background: var(--orange);
  color: #fff;
}

.btn-continue:hover {
  background: var(--orange-light);
}

/* ── DASHBOARD OVERVIEW CARDS ── */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.dash-stat {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1.5px solid var(--border);
  text-align: center;
}

.dash-stat .ds-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 119, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  margin: 0 auto 12px;
}

.dash-stat .ds-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.dash-stat .ds-lbl {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ── SECTION HEADING ── */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px dashed var(--border);
}

.empty-state i {
  font-size: 48px;
  color: var(--border);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--orange);
}

/* ── FOOTER ── */
.apply-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  margin-top: auto;
}

.apply-footer a {
  color: var(--orange);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .auth-card {
    padding: 32px 24px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .wizard-connector {
    width: 30px;
  }

  .ws-label {
    display: none;
  }

  .svc-select-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column;
  }

  .apply-wrap {
    padding: 24px 16px 60px;
  }
}