/* ========================================
   INSTANT LOAD OPTIMIZATION
   Tüm elementler anında yüklenir
   ======================================== */

/* Remove all AOS animations - instant visibility */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Ensure all sections load instantly */
.modern-hero,
.modern-about,
.modern-services,
.modern-products,
.modern-video-section,
.testimonial-area-2025,
.contact-section-2025,
.whatsapp-banner-section {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
}

/* Instant visibility for all cards and elements */
.service-card,
.product-card,
.testimonial-card-2025,
.info-card-modern,
.hero-content,
.about-content,
.section-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* Remove fade effects */
.fadeInUp,
.fadeIn,
.fade-up,
.fade-left,
.fade-right {
    animation: none !important;
    opacity: 1 !important;
}

/* Disable all animations on page load */
* {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
}

/* Re-enable hover animations only */
.service-card:hover,
.product-card:hover,
.hero-btn:hover,
.cta-button:hover {
    transition: all 0.3s ease !important;
}

/* Ensure images load immediately */
img {
    opacity: 1 !important;
}

/* Force immediate rendering */
body {
    opacity: 1 !important;
}
