/**
 * Квиз-форма подбора тура
 */

/* Прогресс-бар */
.vt-quiz-progress {
    margin-bottom: 40px;
}

.vt-quiz-progress__bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.vt-quiz-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 10px;
    width: 25%;
    transition: width 0.4s ease;
}

.vt-quiz-progress__text {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.vt-quiz-progress__current {
    color: #3b82f6;
    font-size: 16px;
}

/* Шаги квиза */
.vt-quiz-form {
    position: relative;
}

.vt-quiz-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vt-quiz-step__title {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 12px;
    text-align: center;
}

.vt-quiz-step__subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px;
    text-align: center;
}

/* Дополнительные отступы для полей на шаге 4 */
.vt-quiz-step[data-step="4"] .vt-tour-request__form-group {
    margin-bottom: 24px;
}

.vt-quiz-step[data-step="4"] .vt-tour-request__form-group:last-of-type {
    margin-bottom: 0;
}

/* Карточки категорий */
.vt-quiz-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.vt-quiz-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: #fafafa;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.vt-quiz-card:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vt-quiz-card.is-active {
    background: #eff6ff;
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.vt-quiz-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    line-height: 1.4;
}

/* Кнопка пропуска */
.vt-quiz-skip {
    display: block;
    margin: 24px auto 0;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.vt-quiz-skip:hover {
    color: #3b82f6;
}

/* Навигация */
.vt-quiz-navigation {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.vt-quiz-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-quiz-btn--back {
    background: #f3f4f6;
    color: #4b5563;
}

.vt-quiz-btn--back:hover {
    background: #e5e7eb;
}

.vt-quiz-btn--next,
.vt-quiz-btn--submit {
    background: #3b82f6;
    color: white;
}

.vt-quiz-btn--next:hover,
.vt-quiz-btn--submit:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.vt-quiz-btn--next:disabled,
.vt-quiz-btn--submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vt-quiz-btn svg {
    flex-shrink: 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .vt-quiz-cards {
        grid-template-columns: 1fr 1fr;
    }

    .vt-quiz-step__title {
        font-size: 24px;
    }

    .vt-quiz-step__subtitle {
        font-size: 14px;
    }

    .vt-quiz-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .vt-quiz-step__title {
        font-size: 22px;
    }

    .vt-quiz-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}
