/* ============================================
   🎨 СЕКЦИЯ "КОНТАКТЫ" (FOOTER)
   ============================================ */

/* 
   📐 Размеры из Figma (Group 13, id: 16:168):
   - Ширина: 1728px
   - Высота: 685px
   - Фон: #958ad1 (фиолетовый)
*/

.footer {
    width: 100%;
    background: #958ad1;
    padding: 0;
    margin: 0;
    position: relative;
}

.footer__container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 117px 36px 90px;
    display: grid;
    grid-template-columns: 546px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 88px;
    position: relative;
    min-height: 685px;
}

/* ============================================
   📋 КОНТАКТНАЯ ИНФОРМАЦИЯ (левая часть)
   ============================================ */

/* 
   Текст контактов (id: 5:31)
   - bbox: x=-7062, y=8288, 546×280px
   - Шрифт: Coolvetica Book, 23.61px
   - Цвет: #ffffff
   - Line-height: 28.34px
*/

.footer__info {
    grid-column: 1;
    grid-row: 1;
    color: #ffffff;
}

.footer__title {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700; /* Coolvetica Bold */
    font-size: 23.61px;
    line-height: 28.34px;
    color: #ffffff;
    margin: 0 0 28px 0;
    letter-spacing: 0;
}

.footer__section {
    margin-bottom: 24px;
}

.footer__section h3 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 400; /* Coolvetica Book */
    font-size: 23.61px;
    line-height: 28.34px;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0;
}

.footer__section address,
.footer__section a,
.footer__section p {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 400; /* Coolvetica Book */
    font-size: 23.61px;
    line-height: 28.34px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0;
    font-style: normal;
    text-decoration: none;
}

.footer__section a:hover {
    text-decoration: underline;
}

/* ============================================
   🗺️ ЯНДЕКС КАРТА (правая часть)
   ============================================ */

/* 
   Карта (id: 12:96)
   - bbox: x=-6303, y=8246, 843×363px
   - Относительно контейнера:
     - Отступ слева: (-6303) - (-7062) = 759px
     - Отступ сверху: 8246 - 8288 = -42px (выше текста)
*/

.footer__map {
    grid-column: 2;
    grid-row: 1;
    width: 843px;
    height: 363px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    margin-top: -42px;
}

.footer__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Стили для Яндекс.Карт */
.footer__map ymaps {
    width: 100%;
    height: 100%;
}

/* ============================================
   © КОПИРАЙТ (внизу слева)
   ============================================ */

/* 
   Копирайт (id: 12:97)
   - bbox: x=-7062, y=8710, 608×56px
   - Шрифт: Coolvetica Bold, 23.61px
   - Цвет: #ffffff
   - Line-height: 28.34px
   - Отступ от текста: 8710 - (8288+280) = 142px
*/

.footer__copyright {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700; /* Coolvetica Bold */
    font-size: 23.61px;
    line-height: 28.34px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0;
    white-space: pre-line;
}

/* ============================================
   📱 АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1440px) {
    .footer__container {
        max-width: 100%;
        padding: 80px 28px 60px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__map {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        max-width: 843px;
        margin: 0 auto;
    }
    
    .footer__copyright {
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .footer__container {
        padding: 60px 20px 40px;
        gap: 30px;
    }
    
    .footer__title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .footer__section h3,
    .footer__section address,
    .footer__section a,
    .footer__section p {
        font-size: 18px;
        line-height: 22px;
    }
    
    .footer__map {
        height: 300px;
    }
    
    .footer__copyright {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 40px 16px 30px;
    }
    
    .footer__map {
        height: 250px;
    }
}

