/* ФУТЕР С КАРТОЙ НА ФОНЕ */
.footer-contacts {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

/* КАРТА НА ВЕСЬ ЭКРАН (ФОН) */
/* КАРТА НА ВЕСЬ ЭКРАН (ФОН) */
.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* КОНТЕЙНЕР КОНТАКТОВ ПОВЕРХ КАРТЫ */
.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: flex-start;
}

/* КОНТАКТЫ С ПРОЗРАЧНОСТЬЮ */
.contacts-info {
    max-width: 420px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.contacts-info h2 {
    color: #0066cc;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(230, 242, 255, 0.85);
    border-left: 3px solid #0066cc;
    border-radius: 6px;
    transition: all 0.2s;
}

.contact-item:hover {
    background: rgba(204, 229, 255, 0.95);
    border-left-color: #0052a3;
    transform: translateX(4px);
}

.contact-label {
    font-weight: 600;
    color: #0052a3;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-value {
    color: #1a1a1a;
    font-size: 17px;
}

.contact-value a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* АДАПТИВ ДЛЯ МОБИЛЬНЫХ */
@media (max-width: 768px) {
    .footer-contacts {
        min-height: 500px;
    }

    .footer-container {
        padding: 40px 15px;
        justify-content: center;
    }

    .contacts-info {
        max-width: 100%;
        padding: 25px;
    }

    .contacts-info h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-item {
        padding: 12px 14px;
        margin-bottom: 15px;
    }

    .contact-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-contacts {
        min-height: 450px;
    }

    .contacts-info {
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .contacts-info h2 {
        font-size: 22px;
    }
}