/* Footer Styles */
.site-footer {
    background-color: #061928;
    color: #f8f8f8;
    padding: 40px 20px 20px;
    font-weight: lighter;
    direction: rtl;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-about {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-about h3 {
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: normal;
    color: #fff;
}

.footer-about p {
    line-height: 1.5;
    color: #aaa;
    font-size: 0.95em;
}

.footer-links {
    display: flex;
    flex: 2 1 500px;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
        justify-content: start;
    gap: 10px;
    text-align: center;
    align-items: center;
}

.footer-column h4 {
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: normal;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9em;
}

/*.footer-column ul.social li a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*}*/

.footer-column ul.social li a i {
    font-size: 1.2em;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #999;
    font-size: 0.85em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-container {
        gap: 25px;
    }

    .footer-about {
        flex: none !important;
    }

    .footer-links {
        gap: 15px;
        flex: none !important;
    }
        .footer-column {

        justify-content: start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px 15px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

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

    .footer-column {
        min-width: calc(50% - 15px);
        margin-bottom: 10px;
        justify-content: start;
    }

    .footer-about p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 12px 12px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-content: center;
    }

    .footer-column {
        min-width: calc(50% - 10px);
    }

    .footer-column h4 {
        margin-bottom: 8px;
        font-size: 1em;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-column ul li a {
        font-size: 0.85em;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 12px;
        font-size: 0.8em;
    }
}
