/**
 * Стили страницы контактов
 */

.vt-contacts {
    padding: 40px 0 60px;
}

.vt-contacts__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
}

.vt-contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Блоки информации */
.vt-contacts__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vt-contacts__block {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vt-contacts__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 12px;
    color: #1976d2;
}

.vt-contacts__content {
    flex: 1;
}

.vt-contacts__label {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}

.vt-contacts__text {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Телефоны */
.vt-contacts__phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vt-contacts__phone {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.2s;
}

.vt-contacts__phone:hover {
    background: #e3f2fd;
}

.vt-contacts__phone-number {
    font-size: 17px;
    font-weight: 600;
    color: #1976d2;
}

.vt-contacts__phone-desc {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.vt-contacts__phone--emergency {
    background: #fff3e0;
}

.vt-contacts__phone--emergency:hover {
    background: #ffe0b2;
}

.vt-contacts__phone--emergency .vt-contacts__phone-number {
    color: #e65100;
}

/* Email */
.vt-contacts__email {
    font-size: 17px;
    font-weight: 500;
    color: #1976d2;
    text-decoration: none;
    transition: color 0.2s;
}

.vt-contacts__email:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* График работы */
.vt-contacts__schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vt-contacts__schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
}

.vt-contacts__schedule-days {
    font-size: 15px;
    color: #333;
}

.vt-contacts__schedule-time {
    font-size: 15px;
    font-weight: 600;
    color: #1976d2;
}

.vt-contacts__schedule-row--closed {
    background: #fef2f2;
}

.vt-contacts__schedule-row--closed .vt-contacts__schedule-time {
    color: #dc2626;
}

/* Карта */
.vt-contacts__map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.vt-contacts__map iframe {
    display: block;
}

/* Мобильная версия */
@media (max-width: 900px) {
    .vt-contacts__grid {
        grid-template-columns: 1fr;
    }

    .vt-contacts__map {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .vt-contacts {
        padding: 24px 0 40px;
    }

    .vt-contacts__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .vt-contacts__block {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .vt-contacts__schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .vt-contacts__map {
        height: 280px;
    }
}
