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

.gtrip-vehicles-page .gtrip-page-hero{
    padding:100px 0 80px;
}

.gtrip-grid-2{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.gtrip-vehicle-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    overflow:hidden;

    transition:.2s;
}

.gtrip-vehicle-card:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);
}

.gtrip-vehicle-card img{

    width:100%;

    height:180px;

    object-fit:contain;

    padding:15px;

    background:#fff;
}

.gtrip-vehicle-content{
    font-size:18px;

    padding:20px;
}

.gtrip-vehicle-content h3{

    font-size:24px;

    margin-bottom:8px;
}

.gtrip-vehicle-meta{

    display:inline-block;

    background:#ecfeff;

    color:#0f766e;

    font-weight:600;

    padding:8px 14px;

    border-radius:999px;

    margin-bottom:20px;
}

.gtrip-vehicle-content p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:14px;
}


.gtrip-price-from{
margin:10px 0;
font-size:16px;
font-weight:700;
color:#16a085;
line-height:1.4;
}

.gtrip-price-note{
font-size:12px;
color:#777;
margin-top:4px;
}
/* =====================================
   VEHICLE ASSIGNMENT BOX
===================================== */

.gtrip-vehicles-page .gtrip-card{

    max-width:900px;

    margin:auto;
}

.gtrip-vehicles-page .gtrip-card h2{

    margin-bottom:20px;

    text-align:center;
}

.gtrip-vehicles-page .gtrip-card p{

    line-height:1.9;

    color:#6b7280;
}

.gtrip-policy-list{
    margin-top:20px;
    padding-left:20px;
}

.gtrip-policy-list li{
    margin-bottom:12px;
    line-height:1.8;
    color:#4b5563;
}

.gtrip-country-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:24px 0;
}

.gtrip-country-tags span{
    background:#ecfeff;
    color:#0f766e;
    padding:10px 16px;
    border-radius:999px;
    font-weight:600;
}

/* =====================================
   CTA
===================================== */

.gtrip-vehicles-page .gtrip-cta{

    max-width:1000px;

    margin:auto;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .gtrip-grid-2{

        grid-template-columns:1fr;
    }

    .gtrip-vehicle-card img{

        height:200px;
    }

    .gtrip-vehicle-content{

        padding:24px;
    }

    .gtrip-vehicle-content h3{

        font-size:24px;
    }

}