/* ============================================
   E&O GLOBAL - PERFORMANCE OPTIMIZATIONS
   Mobile-specific performance enhancements
   ============================================ */

/* Critical CSS için görünüm alanı optimizasyonu */
@media (max-width: 767px) {
  /* Görünmeyen elementleri gizle */
  .desktop-only {
    display: none !important;
  }
  
  /* Animasyonları azalt (batarya tasarrufu) */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* Smooth scroll optimizasyonu */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS momentum scrolling */
  }
  
  /* Image optimization hints */
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  /* Will-change optimizations for better performance */
  .visa-card,
  .country-card,
  .blog-card {
    will-change: transform;
  }
}

