/* 
 * Özellikler Bölümü Stilleri
 */

.features-section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

.features-section.bg-light {
    background-color: #f8f9fa;
}

.features-section.bg-dark {
    background-color: #343a40;
}

.features-section .section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bg-light .section-title {
    color: #333;
}

.bg-dark .section-title {
    color: #fff;
}

.features-section .section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.bg-light .section-description {
    color: #6c757d;
}

.bg-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.feature-item {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.bg-light .feature-item {
    background-color: transparent;
}

.bg-dark .feature-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--iamhere-primary-color, #0d6efd);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--iamhere-primary-color, #0d6efd);
}

.bg-dark .feature-number {
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.bg-light .feature-title {
    color: #333;
}

.bg-dark .feature-title {
    color: rgba(255, 255, 255, 0.9);
}

/* Sayaç Animasyonu */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-number.animated {
    animation: countUp 1s ease forwards;
}

/* Responsive Ayarlamalar */
@media (max-width: 991.98px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .features-section .col-sm-6 {
        margin-bottom: 30px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-section .section-title {
        font-size: 1.8rem;
    }
    
    .features-section .section-description {
        font-size: 1rem;
    }
    
    .feature-number {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
}