/*** fleet ***/

.plf-wrapper{
    max-width:1400px;
    margin:60px auto;
    padding:0 20px;
}

.plf-filters{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.plf-filter{
    background:#fff;
    border:1px solid #3b61a2;
    color:#3b61a2;
    padding:12px 24px;
    cursor:pointer;
    transition:.3s;
    border-radius:4px;
    font-weight:600;
}

.plf-filter:hover,
.plf-filter.active{
    background:#3b61a2;
    color:#fff;
}

.plf-category{
    margin-bottom:70px;
}

.plf-category-header{
    margin-bottom:25px;
}

.plf-category-header h2{
    margin:0;
    font-size:38px;
    font-weight:700;
    text-transform:uppercase;
}

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

.plf-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.plf-card:hover{
    transform:translateY(-6px);
}

.plf-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.plf-card-content{
    padding:20px;
}

.plf-card h3{
    margin:0 0 15px;
    font-size:20px;
    line-height:1.4;
}

.plf-passengers{
    margin-bottom:18px;
    color:#666;
}

.plf-button{
    display:inline-block;
    background:#3b61a2;
    color:#fff;
    padding:10px 18px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
}

.plf-button:hover{
    background:#111;
    color:#fff;
}

@media(max-width:1024px){

    .plf-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .plf-grid{
        grid-template-columns:1fr;
    }

}