/* Custom Scrollbar - Mavi/Camgöbeği Tonlara Uyarlı */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #ecfeff; /* Açık mavi zemin */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #0891b2; /* Ana Mavi/Cyan */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #0e7490; /* Koyu Mavi hover */
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Animation Delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Swiper Custom Styles - Hurdacı Renkleri (Mavi & Kehribar) */
.swiper-pagination-bullet {
    background: #0891b2; /* Pasif nokta: Mavi/Cyan */
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #f59e0b; /* Aktif nokta: Kehribar (Dikkat çekici) */
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}