/* ==================== PROGRESS INDICATOR COMPONENT ==================== */
.progress-container {
    width: 100%;
}

.progress-bar {
    background: var(--color-gray-200, #e2e8f0);
    border-radius: 20px;
    overflow: hidden;
    height: 8px;
}

.progress-fill {
    background: linear-gradient(90deg, var(--color-primary, #f2a83a), var(--color-primary-dark, #e5982b));
    width: 0%;
    height: 100%;
    border-radius: 20px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill.animated {
    animation: progressPulse 1.5s ease infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Progress Labels */
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: var(--color-gray-600, #475569);
}

.progress-percentage {
    font-weight: 700;
    color: var(--color-primary, #f2a83a);
}

/* Step Progress */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--color-gray-200, #e2e8f0);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-gray-600, #475569);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.step-item.completed .step-number {
    background: var(--color-success, #10b981);
    color: white;
}

.step-item.active .step-number {
    background: var(--color-primary, #f2a83a);
    color: var(--color-secondary, #1f2a44);
    transform: scale(1.1);
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--color-gray-200, #e2e8f0);
    z-index: 1;
}

.step-item:last-child .step-line {
    display: none;
}

.step-item.completed .step-line {
    background: var(--color-success, #10b981);
}

.step-label {
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--color-gray-500, #64748b);
}

.step-item.active .step-label {
    color: var(--color-primary, #f2a83a);
    font-weight: 600;
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.circular-progress svg {
    transform: rotate(-90deg);
}

.circular-progress circle {
    fill: none;
    stroke-width: 8;
}

.circular-progress .circle-bg {
    stroke: var(--color-gray-200, #e2e8f0);
}

.circular-progress .circle-fill {
    stroke: var(--color-primary, #f2a83a);
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.circular-progress .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary, #1f2a44);
}

/* Size Variants */
.progress-sm .progress-bar {
    height: 4px;
}

.progress-lg .progress-bar {
    height: 12px;
}