/* Minification failed. Returning unminified contents.
(21,22): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(95,24): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(102,24): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(103,22): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(153,24): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(186,22): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(220,22): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(240,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(241,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(252,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
(277,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-primary'
 */
/* ===== CLEANING QUIZ ===== */

.cleaning-quiz-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Progress Bar */
.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--bs-primary, #0d6efd);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Steps */
.quiz-step {
    display: none;
    animation: quizFadeIn 0.3s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Question */
.quiz-question {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #333;
}

.quiz-hint {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Options Grid */
.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.quiz-options-vertical {
    grid-template-columns: 1fr;
}

/* Option Buttons */
.quiz-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 90px;
}

.quiz-option:hover {
    border-color: var(--bs-primary, #0d6efd);
    background: #f0f6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quiz-option.selected {
    border-color: var(--bs-primary, #0d6efd);
    background: var(--bs-primary, #0d6efd);
    color: #fff;
}

.quiz-option i {
    font-size: 1.75rem;
}

.quiz-option.selected i {
    color: #fff;
}

.quiz-option-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.quiz-options-vertical .quiz-option {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-height: auto;
    padding: 1rem 1.25rem;
}

.quiz-options-vertical .quiz-option i {
    font-size: 1.25rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

/* Contact Form */
.quiz-contact-form {
    max-width: 420px;
    margin: 1.5rem auto 0;
}

.quiz-contact-form .form-label {
    font-weight: 500;
    color: #555;
}

.quiz-contact-form .form-control {
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid #dee2e6;
}

.quiz-contact-form .form-control:focus {
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.quiz-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Result */
.quiz-result {
    text-align: center;
}

.quiz-result-title {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.quiz-result-card {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f4f8 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.quiz-result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.quiz-result-service-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.quiz-result-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* Buttons */
.quiz-btn-primary {
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 280px;
    transition: all 0.2s ease;
}

.quiz-btn-primary:hover {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.quiz-btn-secondary {
    background: transparent;
    color: var(--bs-primary, #0d6efd);
    border: 2px solid var(--bs-primary, #0d6efd);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    min-width: 280px;
    transition: all 0.2s ease;
}

.quiz-btn-secondary:hover {
    background: #f0f6ff;
    color: var(--bs-primary, #0d6efd);
}

.quiz-btn-back {
    color: #6c757d;
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.quiz-btn-back:hover {
    color: #333;
}

.quiz-btn-restart {
    color: #6c757d;
    border: none;
    background: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.quiz-btn-restart:hover {
    color: var(--bs-primary, #0d6efd);
}

/* Navigation */
.quiz-nav {
    text-align: center;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 576px) {
    .cleaning-quiz-container {
        padding: 1.5rem 0.75rem;
    }

    .quiz-question {
        font-size: 1.25rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-option {
        min-height: 70px;
        padding: 1rem;
    }

    .quiz-btn-primary,
    .quiz-btn-secondary {
        min-width: auto;
        width: 100%;
    }

    .quiz-result-service-name {
        font-size: 1.4rem;
    }
}

