/* Why Us / Stats Section Styles */
.trust-parallax {
    position: relative;
    padding: 120px 0;
    /* Arka plan görselini buradan yönetebilirsin */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.trust-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.trust-parallax .container.relative {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-item span {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-red, #E60000); /* Değişken yoksa kırmızı kullan */
    line-height: 1;
}

.stat-item .suffix {
    margin-left: 2px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .trust-parallax {
        padding: 80px 0;
        background-attachment: scroll; /* Mobilde parallax performans için kapatılabilir */
    }
}