/*==================================
            VEHICLES
==================================*/

.vehicles-section{

    padding:140px 50px;

    background:#ffffff;

}

.vehicles-section .section-header{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.vehicles-section .section-header h2{

    font-size:3rem;

    color:#163c29;

    margin:20px 0;

}

.vehicles-section .section-header p{

    color:#666;

    line-height:1.8;

}

/*==============================
            GRID
==============================*/

.vehicles-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

/*==============================
            CARD
==============================*/

.vehicle-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.vehicle-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.14);

}

/*==============================
            IMAGE
==============================*/

.vehicle-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.vehicle-card:hover img{

    transform:scale(1.05);

}

/*==============================
            INFO
==============================*/

.vehicle-info{

    padding:35px;

}

.vehicle-info h3{

    font-size:2rem;

    color:#163c29;

    margin-bottom:12px;

}

.vehicle-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.vehicle-info span{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:#eaf8ee;

    color:#2f8d4c;

    font-weight:600;

}