* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    font-family: sans-serif;
}

.banner-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1200px;
}

.banner-bg {
    display: block;
    width: 100%;
    height: auto;
}

.banner-logo {
    position: absolute;
    top: 0;
    right: 26px;
    width: clamp(60px, 8%, 100px);
    height: auto;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 5% 5% 4%;
}

.banner-arabic {
    direction: rtl;
    text-align: center;
    font-size: clamp(10px, 1.8vw, 20px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 4%;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    width: 100%;
}

.banner-divider {
    border: none;
    border-top: 1.5px solid #1a1a1a;
    margin-bottom: 4%;
    width: 100%;
}

.banner-english {
    text-align: center;
    font-size: clamp(9px, 1.4vw, 18px);
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5%;
    line-height: 1.7;
}

.banner-links {
    display: flex;
    gap: 8%;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: bold;
    font-size: clamp(8px, 1.2vw, 16px);
}

.banner-link svg {
    flex-shrink: 0;
    width: clamp(14px, 2.2vw, 28px);
    height: clamp(14px, 2.2vw, 28px);
}

/* ── Tablet ── */
@media (max-width: 768px) {
    .banner-logo {
        right: 12px;
        width: clamp(40px, 9%, 70px);
    }

    .banner-content {
        width: 50%;
        padding: 4% 3% 4% 3%;
    }

    .banner-arabic {
        font-size: clamp(8px, 2.4vw, 16px);
        line-height: 1.5;
    }

    .banner-english {
        font-size: clamp(7px, 2vw, 14px);
        line-height: 1.6;
    }

    .banner-link {
        font-size: clamp(7px, 1.8vw, 13px);
        gap: 4px;
    }

    .banner-links {
        gap: 5%;
    }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    body {
        align-items: flex-start;
    }

    .banner-wrapper {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    /* Image takes full width, logo stays on top of it */
    .banner-bg {
        width: 100%;
        height: auto;
    }

    .banner-logo {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 52px;
    }

    /* Pull content out of absolute flow — sits below image */
    .banner-content {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px 24px;
        background: #f5f5f5;
        align-items: center;
    }

    .banner-arabic {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .banner-divider {
        margin-bottom: 12px;
    }

    .banner-english {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .banner-links {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .banner-link {
        font-size: 13px;
        gap: 6px;
    }

    .banner-link svg {
        width: 20px;
        height: 20px;
    }
}
