/* Progress Steps Styles - Gold Theme */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    padding: 0 10px;
}

.progress-steps .step-label {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    position: relative;
    z-index: 2;
    transition: color 0.3s, transform 0.2s;
    white-space: nowrap;
    padding: 8px 4px 16px;
    cursor: default;
}

.progress-steps .step-label .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 6px;
    transition: all 0.3s;
    vertical-align: middle;
}

.progress-steps .step-label.active {
    color: #c8a951;
    transform: scale(1.05);
}

.progress-steps .step-label.active .step-num {
    background: linear-gradient(135deg, #c8a951, #dfc06a);
    color: #fff;
    box-shadow: 0 2px 8px rgba(200, 169, 81, 0.4);
}

.progress-steps .step-label.completed {
    color: #28a745;
}

.progress-steps .step-label.completed .step-num {
    background: #28a745;
    color: #fff;
}

.progress-steps .progress-bar-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 38px;
    height: 4px;
    background: #e8e0cc;
    border-radius: 2px;
    z-index: 1;
}

.progress-steps .progress-bar-fill {
    position: absolute;
    left: 0;
    top: 38px;
    height: 4px;
    background: linear-gradient(90deg, #c8a951, #dfc06a);
    border-radius: 2px;
    z-index: 2;
    transition: width 0.4s ease;
}

/* Responsive styles for mobile */
@media screen and (max-width: 576px) {
    .progress-steps {
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .progress-steps .step-label {
        font-size: 0.7rem;
        padding: 6px 2px 14px;
    }

    .progress-steps .step-label .step-num {
        display: block;
        margin: 0 auto 4px;
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .progress-steps .progress-bar-bg,
    .progress-steps .progress-bar-fill {
        top: 36px;
        height: 3px;
    }
}
