/* Shared multi-step form styles (Opportunities + Social Projects) */
.progress-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step-indicator {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 8px;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.step-indicator.active .step-circle {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--primary-rgb), 0.7);
}

.step-indicator.completed .step-circle {
  background: var(--primary-dark);
  color: white;
}

.step-indicator.completed .step-circle::before {
  content: '✓';
}

.step-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.step-indicator.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-section {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
}

.review-item {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.review-value {
  color: var(--text-primary);
}
