/* =========================
   FOOTER BASE STYLES
   ========================= */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 40px;
}

.site-footer a {
    color: #ddd;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

/* =========================
   TOP FOOTER SECTION
   ========================= */
.footer-top {
    display: flex;
    flex-wrap: nowrap; /* Desktop: show in 1 row */
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    margin: 0 auto;
}

/* Left 3 columns */
.footer-left {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-left .footer-column {
    width: 33.33%;
    min-width: 200px;
}

/* Right latest news */
.footer-right {
    width: 50%;
}

/* Column headings */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

/* Column links */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a:hover {
    color: red;
}

/* Latest news styles */
.latest-footer-news li {
    line-height: 1.6;
}

/* =========================
   SOCIAL LINKS
   ========================= */
.footer-social {
    margin: 25px 0;
    text-align: right;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
}

/* Whatsapp badge */
.whatsapp-channel {
    background-color: green;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

/* =========================
   BOTTOM FOOTER LINKS
   ========================= */
.footer-bottom {
    text-align: center;
    margin: 20px 0;
}

.footer-bottom a {
    margin: 0 10px;
    font-size: 14px;
}

.footer-bottom a:hover {
    color: red;
}

/* =========================
   COPYRIGHT CREDIT
   ========================= */
.footer-credit {
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Tablet view (stack right & left side) */
@media (max-width: 992px) {
    .footer-top {
        flex-wrap: wrap;
    }
    .footer-left, .footer-right {
        width: 100%;
    }
    .footer-social {
        text-align: center;
    }
}

/* Mobile view (stack all columns vertically) */
@media (max-width: 768px) {
    .footer-left {
        flex-direction: column;
        align-items: center;
    }
    .footer-left .footer-column {
        width: 100%;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
}
