/* progressBar.css — form adımları ilerleme çubuğu */
.card-progress { margin-bottom: 24px; }
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; }
.step-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; position: relative; cursor: default;
}
.step-item__circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--sky-light);
  background: var(--sky-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  color: var(--ink-hint);
  transition: all 0.4s;
  position: relative; z-index: 2;
  box-shadow: 0 2px 6px rgba(91, 155, 213, 0.08);
}
.step-item__circle::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.4s;
  z-index: -1;
}
.step-item__label {
  font-size: 11px; color: var(--ink-hint); font-weight: 400;
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.step-item__line {
  position: absolute;
  top: 18px;
  left: calc(50% + 18px);
  right: calc(-100% + 50% + 18px);
  height: 2px;
  background: var(--sky-pale);
  z-index: 1;
  transition: background 0.4s;
}
.step-item--active .step-item__circle {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.2), 0 4px 12px rgba(91, 155, 213, 0.35);
  transform: scale(1.05);
}
.step-item--active .step-item__circle::before {
  background: rgba(91, 155, 213, 0.12);
  inset: -6px;
}
.step-item--active .step-item__label {
  color: var(--sky-dark);
  font-weight: 500;
}
.step-item--done .step-item__circle {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(46, 109, 164, 0.25);
}
.step-item--done .step-item__label { color: var(--sky-dark); }
.step-item--done .step-item__line { background: var(--sky-dark); }
.step-item:last-child .step-item__line { display: none; }
.step-item:hover .step-item__circle {
  border-color: var(--sky);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .progress-steps { gap: 4px; }
  .step-item__circle { width: 28px; height: 28px; font-size: 11px; }
  .step-item__line { top: 14px; left: calc(50% + 14px); right: calc(-50% + 14px); }
}
