.choices__inner {
    padding: 0.7rem .75rem !important;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0;
    list-style: none;
    position: relative;
}

.step-indicator li {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex: 1;
}

.step-indicator .step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 3px solid #dee2e6;
    position: relative;
    z-index: 2;
}

.step-indicator .step-circle.active {
    background: #070809;
    color: white;
    border-color: #070809;
    transform: scale(1.1);
    box-shadow: 0 0 20px #3134384f;
}

.step-indicator .step-circle.completed {
    background: #198754;
    color: white;
    border-color: #198754;
}

.step-indicator .step-line {
    position: absolute;
    top: 22px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #dee2e6;
    z-index: 1;
}

.step-indicator .step-line.completed {
    background: #198754;
}

.step-indicator li:first-child .step-line {
    display: none;
}

.step-indicator .step-label {
    margin-top: 8px;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.step-indicator .step-label.active-label {
    color: #070809;
    font-weight: 600;
}

.step-indicator .step-label.completed-label {
    color: #198754;
}

.step-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.step-nav-buttons .btn {
    min-width: 120px;
    padding: 0.6rem 1.5rem;
}

.form-section-title {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.form-section-title i {
    color: #070809;
    margin-right: 0.5rem;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress {
    height: 6px;
    border-radius: 10px;
    background: #e9ecef;
}

.progress-bar {
    background: var(--modern-gradient-success);
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: right;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.step-number-badge {
    display: inline-block;
    background: #070809;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}