/* خلفية Footer */
.footer-background {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.footer-background-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    border: none;
    opacity: 0.85; /* جعل الصورة شفافة */
    background: transparent; /* خلفية شفافة */
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-background-image {
        height: 150px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .footer-background-image {
        height: 120px;
    }
}