/* Scoped styles for home page stepper */
.stepper-section {
    background: #f8f9fa !important;
    border-radius: 15px !important;
    padding: 50px 30px !important;
    margin: 40px 0 !important;
    border: 1px solid #e9ecef !important;
}

.stepper-title {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.stepper-title h2 {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
    color: #1a2980 !important;
}

.stepper-title p {
    color: #666 !important;
}

.progress-bar {
    display: flex !important;
    justify-content: space-between !important;
    margin-bottom: 40px !important;
    position: relative !important;
    align-items: flex-start !important;
}

.progress-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
    flex: 1 !important;
    max-width: 120px !important;
}

.progress-step .step-circle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #e9ecef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-bottom: 10px !important;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #1a2980, #26c6da) !important;
    color: white !important;
}

.progress-step.completed .step-circle {
    background: #28a745 !important;
    color: white !important;
}

.progress-step .step-label {
    font-size: 0.875rem !important;
    color: #666 !important;
    text-align: center !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    max-width: 100px !important;
}

.progress-step.active .step-label {
    color: #1a2980 !important;
    font-weight: 600 !important;
}

.progress-step.completed .step-label {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.progress-line {
    position: absolute !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: #e9ecef !important;
    z-index: 1 !important;
}

.progress-fill {
    height: 100% !important;
    background: linear-gradient(135deg, #1a2980, #26c6da) !important;
    transition: width 0.3s ease !important;
    width: 0% !important;
}

/* Step Content */
.step-content {
    text-align: center !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.step-title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #1a2980 !important;
}

.step-description {
    font-size: 1.1rem !important;
    color: #666 !important;
    max-width: 500px !important;
    line-height: 1.6 !important;
}

.step-actions {
    margin-top: 30px !important;
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
}

.step-btn {
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1rem !important;
}

.step-btn-primary {
    background: linear-gradient(135deg, #1a2980, #26c6da) !important;
    color: white !important;
}

.step-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.3) !important;
}

.step-btn-secondary {
    background: transparent !important;
    border: 2px solid #1a2980 !important;
    color: #1a2980 !important;
}

.step-btn-secondary:hover {
    background: #1a2980 !important;
    color: white !important;
}

.step-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-step .step-label {
        font-size: 0.75rem !important;
        max-width: 80px !important;
    }
    
    .step-content {
        min-height: 250px !important;
    }
    
    .step-title {
        font-size: 1.5rem !important;
    }
    
    .step-description {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .stepper-title h2 {
        font-size: 1.5rem !important;
    }
    
    .progress-step .step-label {
        font-size: 0.7rem !important;
        max-width: 70px !important;
    }
} 