/* QC Progress Animation Styles */
.qc-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.qc-progress-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qc-progress-container {
    max-width: 500px;
    width: 90%;
    background: var(--bs-dark);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qc-progress-header {
    text-align: center;
    margin-bottom: 30px;
}

.qc-progress-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.qc-progress-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--bs-light);
    margin-bottom: 10px;
}

.qc-progress-subtitle {
    font-size: 16px;
    color: var(--bs-secondary);
}

.qc-progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.qc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
}

.qc-progress-stages {
    margin-top: 30px;
}

.qc-stage {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.qc-stage.active {
    opacity: 1;
}

.qc-stage.completed {
    opacity: 0.7;
}

.qc-stage-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.qc-stage.active .qc-stage-icon {
    background: var(--bs-primary);
    animation: rotate 1s linear infinite;
}

.qc-stage.completed .qc-stage-icon {
    background: var(--bs-success);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qc-stage-content {
    flex: 1;
}

.qc-stage-title {
    font-weight: 500;
    color: var(--bs-light);
    margin-bottom: 2px;
}

.qc-stage-description {
    font-size: 14px;
    color: var(--bs-secondary);
}

.qc-fun-fact {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.qc-fun-fact-icon {
    font-size: 20px;
    margin-right: 10px;
}

.qc-fun-fact-text {
    font-size: 14px;
    color: var(--bs-info);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .qc-progress-container {
        padding: 30px 20px;
    }
    
    .qc-progress-icon {
        font-size: 40px;
    }
    
    .qc-progress-title {
        font-size: 20px;
    }
}