/* ============================================================
   PARTNERS PAGE — AuraGO Premium Partner Onboarding
   ============================================================ */

/* ---- AuraGO Brand Tokens ---- */
:root {
  --aura-gold-primary: #C6A679;
  --aura-gold-light:   #DCBE8E;
  --aura-gold-dim:     rgba(198, 166, 121, 0.16);
  --aura-gold-glow:    rgba(198, 166, 121, 0.28);
  --aura-gold-dark:    #734D2D;
  --aura-success:      #22c55e;
  --aura-error:        #ef4444;
  --aura-card-bg:      rgba(30, 30, 30, 0.92);
  --aura-card-border:  rgba(198, 166, 121, 0.2);
  --aura-input-bg:     rgba(18, 18, 18, 0.9);
  --aura-input-border: rgba(198, 166, 121, 0.32);
  --aura-input-focus:  rgba(198, 166, 121, 0.6);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.partners-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 70% 40%, rgba(198, 166, 121, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(220, 190, 142, 0.12) 0%, transparent 50%),
              linear-gradient(180deg, rgba(13,13,13,0.86) 0%, rgba(13,13,13,0.7) 45%, rgba(13,13,13,0.92) 100%),
              url('../package_img/partners.webp');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 42%;
  background-repeat: no-repeat;
  padding-top: var(--navbar-height);
  overflow: hidden;
}

/* Animated orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(198, 166, 121,0.2) 0%, transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  top: 40%; right: -100px;
  background: radial-gradient(circle, rgba(220, 190, 142,0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  bottom: -50px; left: 40%;
  background: radial-gradient(circle, rgba(198, 166, 121,0.12) 0%, transparent 70%);
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.partners-hero .hero-content {
  position: relative;
  z-index: 2;
  display: block !important;
  text-align: center;
  padding: 70px 20px 90px;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  min-height: unset !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 166, 121,0.12);
  border: 1px solid rgba(198, 166, 121,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--aura-gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 1rem; }

.hero-title {
  font-family: var(--font-display, 'Lalezar', sans-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
}
.gradient-text {
  background: linear-gradient(135deg, var(--aura-gold-light), var(--aura-gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: rgba(198, 166, 121, 0.07);
  border: 1px solid rgba(198, 166, 121, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  min-width: 120px;
  transition: border-color 0.3s, background 0.3s;
}
.hero-stat-item:hover {
  background: rgba(198, 166, 121, 0.12);
  border-color: rgba(198, 166, 121, 0.45);
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--aura-gold-light);
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-align: center;
  max-width: 100px;
  line-height: 1.3;
}
.stat-divider {
  display: none;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #8A5D38, #5C3D22);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(198, 166, 121,0.4);
  transition: all 0.3s ease;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(198, 166, 121,0.55);
  color: #fff;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.partners-form-section {
  background: linear-gradient(180deg, #0D0D0D 0%, #141414 100%);
  padding: 60px 0 100px;
  min-height: 100vh;
}

/* ---- Progress Steps ---- */
.form-progress-wrap {
  position: relative;
  margin-bottom: 50px;
}
.progress-track-bg {
  position: absolute;
  top: 24px;
  right: calc(10% + 24px);
  left: calc(10% + 24px);
  height: 3px;
  background: rgba(198, 166, 121,0.12);
  border-radius: 2px;
  z-index: 0;
}
.progress-track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--aura-gold-primary), var(--aura-gold-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.steps-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.step-circle-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20,20,20, 0.9);
  border: 2px solid rgba(198, 166, 121,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}
.step-num-badge { display: none; }
.step-dot-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
}

/* Active step */
.step-dot.active .step-circle-wrap {
  background: linear-gradient(135deg, #8A5D38, #5C3D22);
  border-color: var(--aura-gold-light);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(198, 166, 121,0.2), 0 8px 20px rgba(198, 166, 121,0.4);
  transform: scale(1.1);
}
.step-dot.active .step-dot-label {
  color: var(--aura-gold-light);
  font-weight: 700;
}

/* Completed step */
.step-dot.completed .step-circle-wrap {
  background: rgba(198, 166, 121,0.15);
  border-color: var(--aura-gold-primary);
  color: var(--aura-gold-light);
}
.step-dot.completed .step-circle-wrap::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--aura-success);
  background: rgba(20,20,20,0.85);
  border-radius: 50%;
}
.step-dot.completed .step-dot-label { color: rgba(255,255,255,0.65); }

/* ---- Main Form Card ---- */
.form-card-wrap {
  background: var(--aura-card-bg);
  border: 1px solid var(--aura-card-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(198, 166, 121,0.06);
  position: relative;
  overflow: hidden;
}
.form-card-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aura-gold-dark), var(--aura-gold-primary), var(--aura-gold-light), var(--aura-gold-primary), var(--aura-gold-dark));
}

/* ---- Form Step ---- */
.form-step {
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepInRev {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-step.slide-rev { animation-name: stepInRev; }

/* ---- Step Header ---- */
.step-header-block {
  text-align: center;
  margin-bottom: 40px;
}
.step-icon-badge {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 166, 121,0.18), rgba(220, 190, 142,0.08));
  border: 2px solid rgba(198, 166, 121,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--aura-gold-light);
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(198, 166, 121,0.18);
}
.step-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.step-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

/* ---- Fields Grid ---- */
.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.span-full { grid-column: 1 / -1; }

.field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.field-label i { color: var(--aura-gold-light); font-size: 0.9rem; }
.req-star { color: var(--aura-error); }

.field-input {
  background: var(--aura-input-bg);
  border: 1.5px solid var(--aura-input-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: #e2e8f0;
  font-family: var(--font-primary, 'Cairo', sans-serif);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  width: 100%;
  outline: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.25); }
.field-input:focus {
  border-color: var(--aura-gold-light);
  background: rgba(198, 166, 121,0.05);
  box-shadow: 0 0 0 3px rgba(198, 166, 121,0.12);
}
.field-input.input-error {
  border-color: var(--aura-error) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.field-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23e0aa1c'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}
.field-select option { background: #1a1608; color: #e2e8f0; }

.field-err {
  font-size: 0.82rem;
  color: var(--aura-error);
  min-height: 18px;
  display: block;
}
.center-err { text-align: center; margin-top: 8px; }

/* ---- Type Selection Cards ---- */
.type-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 12px;
}
.type-card-label {
  cursor: pointer;
  display: block;
}
.type-card-label input[type="radio"] { display: none; }
.type-card-body {
  background: rgba(20,26,36,0.7);
  border: 2px solid rgba(198, 166, 121,0.15);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.type-card-label:hover .type-card-body {
  border-color: rgba(198, 166, 121,0.4);
  background: rgba(198, 166, 121,0.05);
}
.type-card-label input:checked + .type-card-body {
  border-color: var(--aura-gold-primary);
  background: rgba(198, 166, 121,0.1);
  box-shadow: 0 0 0 1px var(--aura-gold-primary), 0 8px 32px rgba(198, 166, 121,0.18);
}
.type-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(198, 166, 121,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--aura-gold-light);
  margin: 0 auto 16px;
  transition: all 0.3s;
}
.type-card-label input:checked + .type-card-body .type-card-icon {
  background: linear-gradient(135deg, #8A5D38, #5C3D22);
  color: #fff;
  box-shadow: 0 8px 20px rgba(198, 166, 121,0.3);
}
.type-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.type-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 0;
}
.type-check-mark {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--aura-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.type-card-label input:checked + .type-card-body .type-check-mark { opacity: 1; }

/* ---- Conditional Block ---- */
.conditional-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(198, 166, 121,0.12);
  animation: stepIn 0.35s ease;
}
.block-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px 18px;
  background: rgba(198, 166, 121,0.07);
  border-radius: 10px;
  border-right: 3px solid var(--aura-gold-primary);
  color: var(--aura-gold-light);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Radio / Checkbox Styles ---- */
.radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 9px 18px;
  border: 1.5px solid rgba(198, 166, 121,0.25);
  border-radius: 50px;
  background: rgba(20,26,36,0.7);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  user-select: none;
}
.radio-pill:hover {
  border-color: var(--aura-gold-light);
  color: #fff;
}
.radio-pill input[type="radio"] { display: none; }
.radio-pill:has(input:checked) {
  background: linear-gradient(135deg, rgba(198, 166, 121,0.22), rgba(198, 166, 121,0.08));
  border-color: var(--aura-gold-light);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(198, 166, 121,0.2);
}

.checkbox-row { margin-top: 4px; }
.checkbox-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  user-select: none;
}
.checkbox-pill input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 2px solid rgba(198, 166, 121,0.4);
  background: rgba(20,26,36,0.9);
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
  margin-top: 2px;
}
.checkbox-pill input[type="checkbox"]:checked {
  background: var(--aura-gold-primary);
  border-color: var(--aura-gold-primary);
}
.checkbox-pill input[type="checkbox"]:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
}
.large-pill {
  padding: 16px 20px;
  background: rgba(198, 166, 121,0.05);
  border-radius: 14px;
  border: 1px solid rgba(198, 166, 121,0.15);
}

/* ============================================================
   STEP 3 — DOCUMENTS UPLOAD
   ============================================================ */
.docs-upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.upload-card {
  background: rgba(16,12,4,0.7);
  border: 1.5px solid rgba(198, 166, 121,0.15);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s;
}
.upload-card:hover { border-color: rgba(198, 166, 121,0.3); }

.drug-test-card {
  border-color: rgba(239,68,68,0.25);
  background: rgba(239,68,68,0.04);
}
.drug-test-card:hover { border-color: rgba(239,68,68,0.4); }

.upload-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.upload-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(198, 166, 121,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--aura-gold-light);
  flex-shrink: 0;
}
.drug-icon { background: rgba(239,68,68,0.15); color: #f87171; }
.upload-card-header h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.doc-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
}
.required-badge { background: rgba(198, 166, 121,0.14); color: var(--aura-gold-light); }
.critical-badge { background: rgba(239,68,68,0.15); color: #f87171; }

.upload-drop-zone {
  border: 2px dashed rgba(198, 166, 121,0.2);
  border-radius: 12px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.upload-drop-zone:hover {
  border-color: var(--aura-gold-light);
  background: rgba(198, 166, 121,0.04);
}
.upload-drop-zone.has-file {
  border-color: var(--aura-success);
  border-style: solid;
}

.drop-placeholder {
  text-align: center;
  pointer-events: none;
  padding: 16px;
}
.drop-placeholder i {
  font-size: 2rem;
  color: rgba(198, 166, 121,0.4);
  margin-bottom: 8px;
  display: block;
}
.drop-placeholder p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.drop-placeholder small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.drop-preview {
  width: 100%;
  padding: 10px;
  text-align: center;
}
.drop-preview img {
  max-height: 100px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.upload-file-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--aura-success);
}
.upload-filename {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  word-break: break-all;
  margin: 4px 0 0;
}
.upload-remove-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 0.78rem;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.upload-remove-btn:hover { background: rgba(239,68,68,0.25); }

/* ============================================================
   STEP 4 — SCREENING QUESTIONS
   ============================================================ */
.questions-list { display: flex; flex-direction: column; gap: 20px; }

.question-card {
  background: rgba(16,12,4,0.7);
  border: 1.5px solid rgba(198, 166, 121,0.12);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.question-card:hover { border-color: rgba(198, 166, 121,0.25); }

.question-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.question-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(198, 166, 121,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--aura-gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.question-text {
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   STEP 5 — REVIEW & AGREEMENT
   ============================================================ */
.review-block {
  background: rgba(16,12,4,0.6);
  border: 1px solid rgba(198, 166, 121,0.12);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
}
.review-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aura-gold-light);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(198, 166, 121,0.12);
  padding-bottom: 14px;
}

.review-grid { display: flex; flex-direction: column; gap: 20px; }
.review-group {
  background: rgba(20,26,36,0.5);
  border-radius: 12px;
  padding: 18px;
}
.review-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--aura-gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
}
.review-row:last-child { border-bottom: none; }
.review-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); flex-shrink: 0; }
.review-value {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
  text-align: start;
}
.review-value.uploaded { color: var(--aura-success); }

/* Terms block */
.terms-block {
  background: rgba(16,12,4,0.6);
  border: 1px solid rgba(198, 166, 121,0.15);
  border-radius: 18px;
  padding: 28px;
}
.terms-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 18px;
}
.terms-heading i { color: var(--aura-gold-light); }
.terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.terms-list li {
  padding-right: 20px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.terms-list li::before {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--aura-gold-light);
  font-size: 1rem;
}

/* ============================================================
   FORM NAVIGATION
   ============================================================ */
.form-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(198, 166, 121,0.1);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 14px;
  font-family: var(--font-primary, 'Cairo', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  outline: none;
}
.prev-btn {
  background: rgba(198, 166, 121,0.08);
  border: 1.5px solid rgba(198, 166, 121,0.25);
  color: rgba(255,255,255,0.75);
}
.prev-btn:hover {
  background: rgba(198, 166, 121,0.16);
  color: #fff;
}
.next-btn {
  background: linear-gradient(135deg, #8A5D38, #5C3D22);
  color: #fff;
  box-shadow: 0 8px 24px rgba(198, 166, 121,0.35);
}
.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198, 166, 121,0.5);
}
.next-btn.submit-mode {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}
.next-btn.submit-mode:hover { box-shadow: 0 12px 30px rgba(5,150,105,0.5); }

.step-counter-display {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.step-counter-display #currentStepNum { color: var(--aura-gold-light); font-size: 1.2rem; }
.step-counter-sep { margin: 0 4px; }

/* Flip nav arrows in LTR */
[dir="ltr"] .prev-btn i,
[dir="ltr"] .next-btn i { transform: scaleX(-1); }

/* Fix block-divider border side in LTR */
[dir="ltr"] .block-divider { border-right: none; border-left: 3px solid var(--aura-gold-primary); }

/* ============================================================
   SUCCESS OVERLAY
   ============================================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal {
  background: linear-gradient(135deg, #0d0b04, #121006);
  border: 1px solid rgba(198, 166, 121,0.3);
  border-radius: 28px;
  padding: 52px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.7) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.success-anim-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
}
.success-circle {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(16,185,129,0.5);
  animation: circleIn 0.5s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes circleIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.3);
  animation: ringPulse 2s ease-out infinite;
}
.ring-1 { inset: 0; animation-delay: 0s; }
.ring-2 { inset: -10px; animation-delay: 0.3s; }
.ring-3 { inset: -20px; animation-delay: 0.6s; }
@keyframes ringPulse {
  0%   { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.3); }
}

.success-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.success-msg {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.success-msg strong { color: var(--aura-gold-light); }

.success-next-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.next-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.next-step-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(198, 166, 121,0.12);
  border: 1.5px solid rgba(198, 166, 121,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--aura-gold-light);
}
.next-step-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  max-width: 80px;
  text-align: center;
  line-height: 1.4;
}
.next-step-arrow { color: rgba(255,255,255,0.2); font-size: 0.9rem; }
[dir="ltr"] .next-step-arrow i { transform: scaleX(-1); }

.success-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8A5D38, #5C3D22);
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(198, 166, 121,0.35);
  transition: all 0.3s;
}
.success-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(198, 166, 121,0.5);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .form-card-wrap { padding: 32px 24px; }
  .fields-grid { grid-template-columns: 1fr; }
  .span-full { grid-column: 1; }
  .type-selection-grid { grid-template-columns: 1fr; }
  .docs-upload-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-card-wrap { padding: 24px 16px; border-radius: 16px; }
  .hero-stats-row { gap: 10px; }
  .hero-stat-item { padding: 14px 20px; min-width: 90px; }
  .stat-number { font-size: 1.7rem; }
  .step-dot-label { display: none; }
  .step-circle-wrap { width: 38px; height: 38px; font-size: 0.85rem; }
  .progress-track-bg { top: 19px; }
  .steps-bar { padding: 0 4px; }
  .form-nav-bar { gap: 8px; }
  .nav-btn { padding: 11px 18px; font-size: 0.85rem; }
  .success-next-steps { gap: 6px; }
  .next-step-arrow { display: none; }
  .hero-title { font-size: 2rem; }
}
