/* ==========================================================
   FOOTER
========================================================== */

.Site-Footer{

    background:#0B2746;

    color:#FFF;

    padding:70px 0 30px;

}

.Footer-Container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.Footer-Title{

    font-size:20px;

    margin-bottom:20px;

}

.Footer-Links a{

    display:block;

    color:#DDD;

    margin-bottom:10px;

}

.Footer-Links a:hover{

    color:#FFF;

}

.Footer-Bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

}

@media(max-width:991px){

    .Footer-Container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .Footer-Container{

        grid-template-columns:1fr;

    }

}

/* ====== SOCIAL MEDIA ====== */
.footer-social {
    margin-top: 10px;
}

.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #54B448;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(84, 180, 72, 0.3);
}

/* RTL */
[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

/* ====== CONTACT INFO ====== */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact ul li i {
    width: 20px;
    color: #54B448;
    font-size: 14px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #54B448;
}

/* RTL */
[dir="rtl"] .footer-contact ul li {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-contact ul li i {
    margin-left: 10px;
    margin-right: 0;
}