/* Quiz Premium Styles */
#quiz-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Raleway', sans-serif;
    color: #333;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#quiz-container h2 {
    color: #153F89;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

/* Step visibility */
.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #6A6E74;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ECF0DD;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s;
    outline: none;
    cursor: pointer;
}

.form-group input:focus {
    border-color: #A1BF37;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group label a {
    color: #153F89;
    text-decoration: underline;
}

/* Buttons */
#quiz-container .btn-primary {
    display: block !important;
    width: 100% !important;
    background-color: #153F89 !important;
    color: #ffffff !important;
    padding: 15px !important;
    border: none !important;
    border-radius: 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 5px 0 #0D2B5E !important;
    transition: all 0.2s !important;
    text-align: center !important;
    text-decoration: none !important;
}

#quiz-container .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 0 #0D2B5E !important;
    opacity: 0.95 !important;
}

#quiz-container .btn-primary:active {
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 #0D2B5E !important;
}

#quiz-container .btn-primary:disabled {
    background-color: #ccc !important;
    box-shadow: 0 5px 0 #999 !important;
    cursor: not-allowed !important;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 10px;
    background: #ECF0DD;
    border-radius: 5px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #A1BF37;
    width: 0%;
    transition: width 0.4s ease;
}

/* Question Styles */
.question-container {
    margin-bottom: 2rem;
}

.question-text {
    font-size: 22px;
    font-weight: 700;
    color: #153F89;
    margin-bottom: 1.5rem;
}

.options-list {
    display: grid;
    gap: 1rem;
}

.option-item {
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.option-item:hover {
    border-color: #A1BF37;
    background: #fdfef8;
}

.option-item.selected {
    background: #ECF0DD;
    border-color: #A1BF37;
    font-weight: 600;
}

.option-item input {
    display: none;
}

/* Result Screen */
.result-card {
    text-align: center;
    padding: 2rem;
}

.score-display {
    font-size: 48px;
    font-weight: 800;
    color: #153F89;
    margin-bottom: 1rem;
}

.level-display {
    font-size: 24px;
    font-weight: 700;
    color: #A1BF37;
    margin-bottom: 2rem;
}

.result-description {
    font-size: 18px;
    color: #6A6E74;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-icon {
    margin-right: 10px;
}

/* Transitions */
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}