/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { 
        transform: translateY(50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from { 
        transform: translateX(-50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from { 
        transform: translateX(50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-text {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.animate-button {
    opacity: 0;
    animation: slideInUp 1s forwards;
    animation-delay: 0.5s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    animation: slideInLeft 1s forwards;
}

.about-image {
    opacity: 0;
    animation: slideInRight 1s forwards;
}

.products .accordion-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.products .accordion-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .animate-text,
    .animate-button,
    .about-text,
    .about-image {
        animation-duration: 0.8s;
    }
    
    .animate-button {
        animation-delay: 0.3s;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .animate-text,
    .animate-button,
    .about-text,
    .about-image,
    .products .accordion-item {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}