/* Custom Scrollbar - Yeşil Tonlara Uyarlı */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f0fdf4; /* Açık yeşil zemin */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #16a34a; /* Ana Yeşil */
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #15803d; /* Koyu Yeşil 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 (Yeşil & Turuncu) */
.swiper-pagination-bullet {
    background: #16a34a; /* Pasif nokta: Yeşil */
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ea580c; /* Aktif nokta: Turuncu (Dikkat çekici) */
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}