/* Features Section Styles - Yenilenen arka plan rengi ile */
.features-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    /* Arka plan rengini değiştirdim - önceki renk: #f8faff veya benzer bir ton */
    background-color: #f0f6ff; /* Daha derin mavi bir ton */
}

/* Arka plan efekti */
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradientleri yeni arka plan rengine uygun şekilde ayarladım */
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(67, 97, 238, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 85% 85%, rgba(13, 202, 240, 0.05) 0%, transparent 35%);
    z-index: -1;
}

/* Diğer stiller aynı kalıyor */
.section-badge-wrap {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.section-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-desc {
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
    margin: 0 auto;
}

.text-highlight {
    position: relative;
    color: var(--primary-color);
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25%;
    background-color: rgba(67, 97, 238, 0.1);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

/* Feature kartları */
.feature-card {
    position: relative;
    height: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(240, 240, 250, 0.9);
    /* Beyaz kart arka planı, yeni section arka planı ile daha iyi kontrast sağlıyor */
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.08);
    transform: translateY(-5px);
}

/* İkon container */
.feature-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Özellik başlık */
.feature-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
    color: #1e2432;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

/* Özellik açıklaması */
.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.feature-badge i {
    margin-right: 5px;
}

/* Kart varyasyonları - renk kodlarında küçük ayarlamalar yapıldı yeni arka plana uyum için */
.feature-card .feature-icon-container {
    background-color: rgba(67, 97, 238, 0.1);
}

.feature-card .feature-icon {
    color: var(--primary-color);
}

.feature-card .feature-badge {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

.feature-card:hover .feature-badge {
    background-color: var(--primary-color);
    color: white;
}

.card-security .feature-icon-container {
    background-color: rgba(0, 128, 0, 0.1);
}

.card-security .feature-icon {
    color: green;
}

.card-security .feature-badge {
    background-color: rgba(0, 128, 0, 0.1);
    color: green;
}

.card-security:hover .feature-badge {
    background-color: green;
    color: white;
}

.card-report .feature-icon-container {
    background-color: rgba(220, 53, 69, 0.1);
}

.card-report .feature-icon {
    color: #dc3545;
}

.card-report .feature-badge {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.card-report:hover .feature-badge {
    background-color: #dc3545;
    color: white;
}

.card-language .feature-icon-container {
    background-color: rgba(111, 66, 193, 0.1);
}

.card-language .feature-icon {
    color: #6f42c1;
}

.card-language .feature-badge {
    background-color: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.card-language:hover .feature-badge {
    background-color: #6f42c1;
    color: white;
}

.card-trend .feature-icon-container {
    background-color: rgba(32, 201, 151, 0.1);
}

.card-trend .feature-icon {
    color: #20c997;
}

.card-trend .feature-badge {
    background-color: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.card-trend:hover .feature-badge {
    background-color: #20c997;
    color: white;
}

.card-mobile .feature-icon-container {
    background-color: rgba(255, 193, 7, 0.1);
}

.card-mobile .feature-icon {
    color: #ffc107;
}

.card-mobile .feature-badge {
    background-color: rgba(255, 193, 7, 0.1);
    color: #966102;
}

.card-mobile:hover .feature-badge {
    background-color: #ffc107;
    color: #212529;
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-title {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 50px 0;
    }
    
    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
}