.simple-footer {
    background: #2C0E0E;
    color: #E5D5C5;
    padding: 80px 60px 40px;
    font-family: 'Avenir Next Arabic', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    color: #E5D5C5;
}

.footer-text a,
.footer-menu a,
.subfooter-links a {
    color: #E5D5C5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover,
.footer-menu a:hover,
.subfooter-links a:hover {
    color: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(92%) sepia(15%) saturate(300%) hue-rotate(330deg) brightness(95%);
}

.subfooter {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(229, 213, 197, 0.2);
    font-size: 0.95rem;
}

.subfooter-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(229, 213, 197, 0.7);
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-col-logo {
        order: -1;
    }
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    .simple-footer {
        padding: 60px 30px 40px;
    }
    .footer-title {
        font-size: 1.9rem;
    }
}