/* إزالة خلفيات البانر */
.banner--fixed img,
.banner-entry {
  background-color: transparent !important;
}


/* أول Section في الصفحة */
section:nth-of-type(1) {
  margin: 0 !important;
}


/* جعل أول Section بعرض كامل */
section:nth-of-type(1) .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}


/* =========================================
   Mobile Only
   ========================================= */

@media (max-width: 767px) {

  /*
   * اختبار الأداء:
   * تعطيل جميع الحركات والـ transitions
   */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }


  /*
   * إلغاء Blur / Glass Effects
   * لتقليل تكلفة الـ GPU والـ Paint
   */
  .fixed,
  .sticky,
  header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }


  /*
   * إخفاء الـ Bottom Tab Bar
   */
  .sticky_bar {
    display: none !important;
  }


  /*
   * إزالة أي مؤثرات Filter محتملة من البانرات
   */
  .banner--fixed,
  .banner--fixed img,
  .banner-entry {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }


  /*
   * تقليل مشاكل الـ compositing المحتملة
   * بدون إجبار كل عناصر الصفحة على GPU layer
   */
  header,
  .fixed,
  .sticky {
    transform: none !important;
  }
}