/* === FOOTER MODERNE === */
footer {
    background-color: #2c2c2c;
    color: #f1f1f1;
    padding: 20px 0;
    font-size: 14px;
    border-top: 3px solid #f39c12;
}

footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .footer-left,
footer .footer-right {
    padding: 5px 10px;
}

footer .footer-left {
    text-align: left;
}

footer .footer-right {
    text-align: right;
    font-style: italic;
    opacity: 0.8;
}

footer a {
    color: #f1f1f1;
    text-decoration: underline;
}

footer a:hover {
    color: #f39c12;
}

/* RTL support */
body.rtl footer .footer-left {
    text-align: right;
}

body.rtl footer .footer-right {
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-right {
        text-align: center;
        padding: 8px 0;
    }

    body.rtl footer .footer-left,
    body.rtl footer .footer-right {
        text-align: center;
    }
}
