/* İstatistik Kartları Stilleri */
.custom-stats.stats-section {
    background-color: #f3f4f6;
    padding: 60px 0;
}

.custom-stats .stat-card {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Kart Renkleri */
.custom-stats .blue-card {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.custom-stats .green-card {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.custom-stats .purple-card {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.custom-stats .orange-card {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.custom-stats .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.custom-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-stats .stat-card:hover::before {
    opacity: 1;
}

.custom-stats .stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.custom-stats .stat-icon i {
    font-size: 28px;
    color: white;
}

.custom-stats .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.custom-stats .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991.98px) {
    .custom-stats.stats-section {
        padding: 40px 0;
    }

    .custom-stats .stat-card {
        padding: 25px 15px;
    }

    .custom-stats .stat-icon {
        width: 60px;
        height: 60px;
    }

    .custom-stats .stat-icon i {
        font-size: 24px;
    }

    .custom-stats .stat-value {
        font-size: 32px;
    }

    .custom-stats .stat-label {
        font-size: 15px;
    }
}

/* Mobil */
@media (max-width: 767.98px) {
    .custom-stats.stats-section {
        padding: 30px 0;
    }

    .custom-stats .stat-card {
        padding: 20px 15px;
    }

    .custom-stats .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .custom-stats .stat-icon i {
        font-size: 20px;
    }

    .custom-stats .stat-value {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .custom-stats .stat-label {
        font-size: 14px;
    }
}
