/**
 * AOS Onboarding Module Styles
 * Extracted from aos-onboarding.php shortcode
 */

/* Onboarding Wrapper */
.aos-onboarding-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aos-onboarding-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Progress Indicator */
.aos-onboarding-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.aos-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aos-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.aos-progress-step.active .aos-step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.aos-progress-step.completed .aos-step-number {
    background: #10b981;
    color: white;
}

.aos-step-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.aos-progress-step.active .aos-step-label {
    color: #667eea;
    font-weight: 600;
}

.aos-progress-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 10px;
}

.aos-progress-step.completed + .aos-progress-line {
    background: #10b981;
}

/* Onboarding Content */
.aos-onboarding-content {
    padding: 0 20px;
}

.aos-onboarding-step-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1e293b;
}

.aos-onboarding-step-description {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 30px 0;
}

/* Onboarding Form */
.aos-onboarding-form .aos-form-group {
    margin-bottom: 20px;
}

.aos-onboarding-form .aos-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.aos-onboarding-form .aos-form-group input,
.aos-onboarding-form .aos-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.aos-onboarding-form .aos-form-group input:focus,
.aos-onboarding-form .aos-form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.aos-onboarding-form .aos-form-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.aos-onboarding-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* Onboarding Buttons */
.aos-onboarding-actions .aos-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.aos-onboarding-actions .aos-btn-secondary {
    background: #e2e8f0;
    color: #64748b;
}

.aos-onboarding-actions .aos-btn-secondary:hover {
    background: #cbd5e1;
}

.aos-onboarding-actions .aos-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.aos-onboarding-actions .aos-btn-primary:hover {
    opacity: 0.9;
}

/* Onboarding Error */
.aos-onboarding-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.aos-hidden {
    display: none;
}

/* Onboarding Notice */
.aos-onboarding-notice {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.aos-notice-success {
    background: #d1fae5;
    color: #065f46;
}

/* Responsive */
@media (max-width: 480px) {
    .aos-onboarding-wrapper {
        padding: 10px;
    }
    
    .aos-onboarding-container {
        padding: 30px 20px;
    }
    
    .aos-onboarding-progress {
        padding: 0 10px;
    }
    
    .aos-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .aos-step-label {
        font-size: 10px;
    }
}
