/* <!-- Footer Section========================================= --> */
/* Footer Section */
.site-footer {
    background: #1e4620;
    color: #f4d35e;
    padding: 50px 20px 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* Footer Columns */
.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f4d35e;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-col p i {
    margin-right: 8px;
    color: #f4d35e;
}

.footer-col .arabic {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-col a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    background: #f4d35e;
    color: #1e4620;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-col a:hover {
    background: #e0b440;
}

/* Footer Bottom */
.footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #f4d35e;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.footer-bottom a {
    color: #f4d35e;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        min-width: 80%;
    }
}
