/* AFN Enerji Danışmanlık - Tema CSS */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom animations - Removed */
/* Sayfa yükleme animasyonları kaldırıldı */

/* Mega menu styles */
.mega-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mega-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Hero background pattern */
.hero-bg {
    background-image: 
        linear-gradient(135deg, rgba(5, 150, 105, 0.9) 0%, rgba(3, 105, 161, 0.8) 100%),
        url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Service card - No animations */
.service-card {
    /* Animasyonlar kaldırıldı */
}

/* Statistics counter animation */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Mobile menu animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}
