/* Sayaç Stilleri */
.stat-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray);
}

.stat-number.completed {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Parallax için */
.stats-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    will-change: transform;
}