/* إصلاح مشكلة اختفاء اللوجو في نتائج البحث */

/* ضمان ظهور اللوجو في الهيدر */
.site-header-logo {
    max-height: 54px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ضمان ظهور اللوجو في الموبايل */
@media (max-width: 991.98px) {
    .site-header-logo {
        max-height: 36px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ضمان ظهور اللوجو في الفوتر */
.vfx-footer-logo img {
    max-width: 200px !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 20px !important;
}

/* إصلاح مشكلة اللوجو في نتائج البحث - Meta Tags */
/* ضمان أن اللوجو يظهر في Open Graph */
meta[property="og:image"] {
    content: url('/site_assets/images/logo footer.png') !important;
}

/* ضمان أن اللوجو يظهر في Twitter Cards */
meta[name="twitter:image"] {
    content: url('/site_assets/images/logo footer.png') !important;
}

/* ضمان أن اللوجو يظهر في Structured Data */
/* إضافة لوجو احتياطي في حالة فشل تحميل اللوجو الأساسي */
.site-header-logo:not([src]),
.site-header-logo[src=""],
.site-header-logo[src*="undefined"],
.site-header-logo[src*="null"] {
    background-image: url('/site_assets/images/logo footer.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 150px !important;
    height: 54px !important;
}

/* إصلاح مشكلة اللوجو في لوحة الإدارة */
.vfx-sidebar-menu .logo a img {
    max-width: 178px !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ضمان ظهور اللوجو في جميع المتصفحات */
.site-header-logo,
.vfx-footer-logo img,
.vfx-sidebar-menu .logo a img {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

/* إصلاح مشكلة اللوجو في الصفحات المختلفة */
.navbar-brand img,
.site-logo img,
.logo img {
    max-height: 54px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ضمان ظهور اللوجو في نتائج البحث - تحسينات إضافية */
.site-header-logo::before {
    content: '';
    display: block;
    width: 150px;
    height: 54px;
    background-image: url('/site_assets/images/logo footer.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

/* إصلاح مشكلة اللوجو في الأجهزة المختلفة */
@media (max-width: 768px) {
    .site-header-logo {
        max-height: 36px !important;
    }
    
    .vfx-footer-logo img {
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .site-header-logo {
        max-height: 32px !important;
    }
    
    .vfx-footer-logo img {
        max-width: 120px !important;
    }
}
