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

.page-contacts .section-title {
    margin-bottom: 60px;
}

.page-contacts .callback-wrapper {
    margin-top: -55px;
    z-index: 111;
    position: relative;
    margin-bottom: 135px;
}

/* Блок контактной информации */
.contacts-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.contacts-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 400;
    color: #383E4B;
}

.contacts-title {
    margin-bottom: 65px;
}

.contacts-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contacts-info-item a {
    color: #383E4B;
    font-size: 21px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-info-item a:hover {
    color: #E01F26;
}

/* Карта */
.contacts-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 570px;
    border-radius: 5px;
}

/* Адаптивные стили */
@media (max-width: 1000px) {
    .contacts-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .page-contacts .section-title {
        padding: 0;
        margin-bottom: 30px;
    }

    .contacts-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .contacts-info-item {
        font-size: 16px;
    }

    .contacts-info-item a {
        font-size: 17px;
    }

    .map-container {
        height: 300px;
    }

    .page-contacts .callback-wrapper {
        margin-top: 0;
        margin-bottom: 60px;
    }
}