/* ========================================
   YENİ ÇOX SÜTUNLU FOOTER (footer.php üçün)
   Bu bloku index_style.css faylının SONUNA əlavə edin.
   Köhnə "Footer Styles" bloku ilə toqquşmasın deyə
   fərqli class adları (.site-footer) istifadə olunub —
   köhnə .footer-container / .footer-section stillərini silə bilərsiniz.
======================================== */

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 40px 20px 0;
    font-size: 14px;
    color: #333;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col {
    flex: 1 1 150px;
    min-width: 150px;
}

.footer-col:first-child {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo img {
    height: 24px;
    width: auto;
    margin-bottom: 12px;
}

.footer-desc {
    color: #444;
    line-height: 1.5;
    margin: 0;
    font-size: 13px;
}

.footer-col .footer-heading {
    color: #555555;
    font: bold 15.4px Arial;
    margin-top: 18px;
    margin-bottom: 12px;
    margin-left: 0px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.footer-col ul li {
    color: #555;
}

/* Orta hissə - sosial ikonlar */
.footer-middle {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-label {
    font-weight: 600;
    color: #333;
    margin-right: 6px;
}

.footer-social .social-link img {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.2s ease;
}

.footer-social .social-link:hover img {
    transform: scale(1.15);
}

/* Alt hissə - copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    padding: 15px 0 60px;
    text-align: center;
    color: #555;
    font-size: 12px;
}

.footer-bottom p {
    margin: 4px 0;
}

/* Mobil */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-col:first-child {
        order: -1;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-bottom {
        padding-bottom: 90px; /* mobile-nav ilə üst-üstə düşməsin */
    }
}