/* ============================================
   ФУТЕР
   ============================================ */

.site-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-title {
    margin-bottom: 35px;
}

.footer-full-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    line-height: 1.5;
    display: block;
}

.footer-heading {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #E4003A;
    margin: 10px auto 0;
    border-radius: 2px;
}

.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-left {
    flex: 0 0 auto;
    min-width: 300px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.footer-contact-item {
    font-size: 16px;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #d0d0d0;
}

.footer-contact-label {
    font-weight: 600;
    color: #ffffff;
}

.footer-contact-value {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-value:hover {
    color: #ffffff;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    min-width: 180px;
    border: none;
    cursor: pointer;
}

.footer-btn-phone {
    background: #E4003A;
    color: #ffffff;
}

.footer-btn-phone:hover {
    background: #a01830;
    color: #ffffff;
    transform: scale(1.03);
}

.footer-btn-email {
    background: #2D7DFF;
    color: #ffffff;
}

.footer-btn-email:hover {
    background: #1a5fd4;
    color: #ffffff;
    transform: scale(1.03);
}

.footer-right {
    flex: 0 0 auto;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.footer-map iframe {
    display: block;
    width: 584px;
    height: 460px;
    border: none;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    margin-top: 10px;
}

.footer-copyright p {
    font-size: 14px;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #a0a0a0;
    margin: 5px 0;
}

.footer-developer a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-developer a:hover {
    color: #ffffff;
}

/* === ПЛАНШЕТЫ (до 1024px) === */
@media (max-width: 1024px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-left {
        min-width: auto;
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .footer-contacts {
        align-items: center;
    }
    
    .footer-buttons {
        align-items: center;
    }
    
    .footer-map iframe {
        width: 100%;
        max-width: 584px;
        height: 350px;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-full-title {
        font-size: 16px;
    }
    
    .footer-heading {
        font-size: 24px;
    }
}

/* === ТЕЛЕФОНЫ (до 768px) === */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px 15px;
    }
    
    .footer-logo-img {
        height: 80px;
    }
    
    .footer-full-title {
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 20px;
    }
    
    .footer-heading::after {
        width: 40px;
    }
    
    .footer-columns {
        gap: 25px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-contact-item {
        font-size: 14px;
    }
    
    .footer-btn {
        padding: 10px 25px;
        font-size: 14px;
        min-width: 150px;
    }
    
    .footer-map iframe {
        height: 250px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

/* === МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 480px) === */
@media (max-width: 480px) {
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-full-title {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-btn {
        padding: 8px 20px;
        font-size: 13px;
        min-width: 130px;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}