/* =========================
   Performance Optimizations
   SAFE VERSION
========================= */

/* تعطيل الأنيميشن الثقيلة فقط */
@media (max-width: 768px) {
  .wave,
  .box .block,
  .title .block,
  .role .block {
    animation: none !important;
  }
}

/* أزرار التحميل – تثبيت الظهور */
.btn,
.btn-outline-whitez {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff;
}

/* تحسين أزرار التحميل على الموبايل */
@media (max-width: 768px) {
  .btn,
  .btn-outline-whitez {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

/* منع background fixed على الموبايل */
@media (max-width: 992px) {
  .hero-section,
  section {
    background-attachment: scroll !important;
  }
}

/* تقليل الظلال الثقيلة فقط */
@media (max-width: 768px) {
  .feature-1,
  .step,
  .review {
    box-shadow: none !important;
  }
}

/* منع GIF من كسر التخطيط */
img {
  max-width: 100%;
  height: auto;
}
/* Fix AOS hidden elements on mobile */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}
