/* =========================================
   İSTATİSTİKLER
========================================= */

.stats{
    width:100%;
    background:#fff;
    padding:80px 0 65px;
}

.stats .container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.stat{
    min-height:135px;
    border:1px dashed rgba(10, 40, 55, .14);
    border-radius:14px;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:.35s ease;
}

.stat:hover{
    transform:translateY(-5px);
    border-color:rgba(10, 40, 55, .28);
    box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.stat .counter{
    display:block;
    font-size:38px;
    line-height:1;
    font-weight:800;
    letter-spacing:1px;
    color:#102f40;
    margin-bottom:14px;
}

.stat p{
    margin:0;
    font-size:17px;
    font-weight:500;
    color:#111;
}

/* Animasyon görünümü */
.reveal-in{
    opacity:0;
    transform:translateY(25px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal-in.active{
    opacity:1;
    transform:translateY(0);
}

/* TABLET */
@media(max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* MOBİL */
@media(max-width:576px){
    .stats{
        padding:55px 0 45px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .stat{
        min-height:115px;
    }

    .stat .counter{
        font-size:34px;
    }

    .stat p{
        font-size:16px;
    }
}