/* ================================================
   UNIFIED PROGRESS BAR STYLES
   Clean, minimal design consistent across all pages
   ================================================ */

.progress-bar-container {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 998;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-step.active .step-circle {
    background: #4a7c59;
    color: #ffffff;
    border-color: #4a7c59;
}

.progress-step.completed .step-circle {
    background: #4a7c59;
    color: #ffffff;
    border-color: #4a7c59;
}

.progress-step span {
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    transition: color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active span {
    color: #1a1a1a;
    font-weight: 600;
}

.progress-step.completed span {
    color: #666;
}

.progress-line {
    flex: 1;
    height: 1px;
    background: #e8e8e8;
    margin: 0 20px;
    margin-bottom: 30px;
    max-width: 120px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .progress-bar-container {
        padding: 20px 0;
    }
    
    .progress-steps {
        padding: 0 15px;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .progress-step span {
        font-size: 11px;
    }
    
    .progress-line {
        margin: 0 10px;
        margin-bottom: 26px;
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .progress-step span {
        display: none;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .progress-line {
        margin: 0 8px;
        margin-bottom: 0;
    }
}
