/* ===== Footer Redesign (PIF Style Layout) ===== */

:root {
    --primary-color: #000000;
    --secondary-color: #FAFAFA;
    --text-color: #666666;
    --accent-color: #222222;
    --accent-secondary-color: #ad2025;
    --white-color: #FFFFFF;
    --divider-color: #6666661A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Cairo", sans-serif;
}
.main-footer {
    padding: 60px 0 0;
    background-color: var(--dark-section-bg, #1a1a1a);
    color: #fff;
    direction: rtl;
    font-family: "Tajawal", sans-serif;
}

.footer-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}


.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex: 3 1 600px;
}

.footer-nav .nav-list {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-nav .nav-list h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white-color);
    font-weight: 600;
}

.footer-nav .nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav .nav-list ul li {
    margin-bottom: 10px;
}

.footer-nav .nav-list ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav .nav-list ul li a:hover {
    color: var(--primary-color);
}

/* Contact list icons */
/* .footer-contact-list i {
    color: var(--white-color);
    margin-left: 8px;
} */

/* Social section */
.footer-side {
    text-align: right;
}

.footer-social h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white-color);
}

.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.footer-social ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social ul li a:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Language */
.footer-lang h5 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--white-color);
}

.footer-lang ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-lang ul li a {
    color: #fff;
    text-decoration: underline;
}

.footer-lang ul li.active a {
    color: var(--primary-color);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links li a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}