/* ===== Страница "Туристам" ===== */

/* ===== Заголовок страницы (белый фон — как на «Контактах» и «Способах оплаты») ===== */
.vt-tourists__head {
    padding: 40px 0 8px;
    background: #fff;
}

.vt-tourists__badge {
    display: inline-block;
    padding: 6px 14px;
    margin: 16px 0 12px;
    border-radius: 999px;
    background: #e3f2fd;
    color: #0077b6;
    font-size: 13px;
    font-weight: 600;
}

.vt-tourists__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1a2b48;
}

.vt-tourists__subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    color: #5a6b85;
}

/* ===== Секция документов ===== */
.vt-tourists__docs {
    padding: 32px 0 72px;
    background: #fff;
}

.vt-tourists__section-header {
    margin-bottom: 24px;
}

.vt-tourists__label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0077b6;
}

.vt-tourists__heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
}

.vt-tourists__intro {
    max-width: 760px;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #556;
}

/* ===== Список документов ===== */
.vt-docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vt-docs__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s;
}

.vt-docs__item:hover {
    border-color: #0077b6;
    box-shadow: 0 10px 32px rgba(0, 119, 182, 0.12);
    transform: translateY(-2px);
}

.vt-docs__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
}

.vt-docs__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vt-docs__name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.vt-docs__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #78909c;
}

.vt-docs__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.vt-docs__kind,
.vt-docs__size {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #90a4ae;
}

.vt-docs__kind {
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef2f6;
    color: #607d8b;
}

.vt-docs__download {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #e3f2fd;
    color: #0077b6;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
}

.vt-docs__item:hover .vt-docs__download {
    background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
    color: #fff;
}

/* ===== Пустое состояние ===== */
.vt-docs__empty {
    padding: 56px 24px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cfd8dc;
    border-radius: 20px;
    color: #90a4ae;
}

.vt-docs__empty p {
    margin: 12px 0 0;
    font-size: 16px;
    color: #607d8b;
}

.vt-docs__empty-note {
    font-size: 14px !important;
    color: #90a4ae !important;
}

.vt-docs__empty-note a {
    color: #0077b6;
    font-weight: 600;
}

/* ===== CTA ===== */
.vt-tourists__cta {
    padding: 64px 0;
    background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
}

.vt-tourists__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.vt-tourists__cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.vt-tourists__cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.vt-tourists__cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vt-tourists__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #fff;
    color: #0077b6;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.25s;
}

.vt-tourists__btn:hover {
    opacity: 0.9;
    color: #0077b6;
}

.vt-tourists__cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 768px) {
    .vt-tourists__head {
        padding: 24px 0 4px;
    }

    .vt-tourists__title {
        font-size: 26px;
    }

    .vt-tourists__subtitle {
        font-size: 15px;
    }

    .vt-tourists__docs {
        padding: 24px 0 48px;
    }

    .vt-tourists__heading {
        font-size: 20px;
    }

    .vt-docs__item {
        flex-wrap: wrap;
        padding: 18px;
        gap: 14px;
    }

    .vt-docs__download {
        width: 100%;
        justify-content: center;
    }

    .vt-tourists__cta {
        padding: 48px 0;
    }

    .vt-tourists__cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .vt-tourists__cta-title {
        font-size: 26px;
    }

    .vt-tourists__cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .vt-tourists__btn {
        justify-content: center;
    }

    .vt-tourists__cta-note {
        text-align: center;
    }
}
