/* =====================================
   AZZAWAJ FOOTER CSS (ELITE VERSION)
===================================== */

/* ================= BASE ================= */

.site-footer {
    background: #111;
    color: #ddd;
    padding: 70px 0 25px;
    font-size: 14px;
}

/* ================= GRID ================= */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ================= WIDGET ================= */

.footer-widget {
    margin-bottom: 20px;
}

/* TITLE */
.footer-widget h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}

/* UNDERLINE */
.footer-widget h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #F57C00;
    display: block;
    margin-top: 6px;
}

/* ================= LINKS ================= */

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* ================= TEXT ================= */

.footer-widget p {
    color: #bbb;
    line-height: 1.6;
}

/* ================= SOCIAL ================= */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #F57C00;
    transform: translateY(-3px);
}

/* ================= DIVIDER ================= */

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}