/*
Bu yazılım anxcure.com'a aittir.
Tüm hakları anxcure.com tarafından saklıdır.
İzinsiz kullanım, kopyalama veya dağıtım yasaktır.
© 2025 anxcure.com. Tüm hakları saklıdır.
*/

/* ===== HERO BÖLÜMÜ AOS ANİMASYONLARI ===== */

/* Hero Badge Animasyonu */
.hero-badge[data-aos="fade-down"] {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title Animasyonları */
.hero-title span[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title span[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Description Animasyonu */
.hero-description[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-description[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Stats Animasyonları */
.stat-item-modern[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item-modern[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hero Buttons Animasyonları */
.hero-buttons a[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-buttons a[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Logo Central Animasyonu */
.logo-central[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-central[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Logo Ring Pulse Animasyonu */
.logo-ring[data-aos="pulse"] {
    animation: pulse-ring 2s infinite;
}

.logo-ring-2[data-aos="pulse"] {
    animation: pulse-ring-2 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring-2 {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Feature Pills Animasyonları */
.feature-pill[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px) rotate(5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-pill[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Connection Lines Animasyonları */
.connection-line[data-aos="fade-in"] {
    opacity: 0;
    transform: scaleX(0);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.connection-line[data-aos="fade-in"].aos-animate {
    opacity: 1;
    transform: scaleX(1);
}

/* Floating Dots Animasyonları */
.floating-dot[data-aos="bounce"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-dot[data-aos="bounce"].aos-animate {
    opacity: 1;
    transform: translateY(0);
    animation: float-bounce 2s infinite;
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Indicator Animasyonu */
.scroll-indicator[data-aos="fade-in"] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-indicator[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

.scroll-arrow[data-aos="bounce"] {
    animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Hover Efektleri */
.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 209, 197, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(79, 209, 197, 0.2);
    transition: all 0.3s ease;
}

/* Mobile Optimizasyonları */
@media (max-width: 768px) {
    .hero-title span[data-aos="fade-up"] {
        transform: translateY(20px);
    }
    
    .feature-pill[data-aos="fade-up"] {
        transform: translateY(20px);
    }
    
    .floating-dot[data-aos="bounce"] {
        transform: translateY(10px);
    }
}

/* Performance Optimizasyonları */
[data-aos] {
    will-change: transform, opacity;
}

[data-aos].aos-animate {
    will-change: auto;
}

/* Dark Theme Desteği */
[data-theme="dark"] [data-aos] {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Özel Animasyon Efektleri */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual-new {
    position: relative;
    z-index: 1;
}

/* Staggered Animation Delays */
.hero-title span:nth-child(1) {
    transition-delay: 0.1s;
}

.hero-title span:nth-child(2) {
    transition-delay: 0.2s;
}

.hero-title span:nth-child(3) {
    transition-delay: 0.3s;
}

/* Counter Animation */
.stat-number-modern {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-number-modern.aos-animate {
    animation: count-up 2s ease-out;
}

@keyframes count-up {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}