.footer-epic-global {
    background: #0f243d;
    color: #fff;
    padding: 0;
    margin-top: 30px;
    border-top: none;
    font-family: 'Tajawal', 'Cairo', sans-serif;
}

.footer-content-global {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    gap: 0;
    min-height: 40px;
}

.footer-logo-global img {
    height: 200px;
    width: auto;
    display: block;
    margin-top: -50px;
    margin-bottom: -20px;
}

.footer-social-global {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social-global a {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
}

.footer-social-global a:hover {
    background: #fff;
    color: #2a5298;
}

.footer-links-global {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.footer-link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
    padding: 0 8px;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-divider-global {
    border: none;
    border-top: 1.5px solid #eaf3ff;
    margin: 0 auto;
    width: 70%;
    opacity: 0.5;
}

.footer-bottom-global {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 6px;
}

@media (max-width: 900px) {
    .footer-content-global {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        min-height: unset;
    }

    .footer-links-global {
        flex-direction: column;
        gap: 6px;
    }

    .footer-logo-global img {
        height: 90px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .footer-content-global {
        padding: 10px 14px;
        gap: 10px;
    }
    .footer-links-global { gap: 8px; }
    .footer-link { font-size: 1rem; }
    .footer-social-global { gap: 10px; }
    .footer-social-global a { width: 40px; height: 40px; font-size: 1.3rem; }
    .footer-bottom-global { font-size: 1rem; padding-bottom: 10px; }
}

@media (max-width: 480px) {
    .footer-content-global { text-align: center; }
    .footer-logo-global img { height: 80px; }
    .footer-divider-global { width: 85%; }
}
