/* ===================================================
   SSV TOURS & TRAVELS - CARS PAGE
=================================================== */

body{

    margin:0;

    padding:0;

    background:#f4f7fb;

    font-family:'Poppins',sans-serif;

    color:#1e293b;

}

/* ===================================================
   PAGE BANNER
=================================================== */

.page-banner{

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1d4ed8
    );

    color:white;

    text-align:center;

    padding:70px 10%;

}

.page-banner h1{

    margin:0;

    font-size:44px;

    font-weight:700;

}

.page-banner p{

    margin-top:15px;

    font-size:18px;

    opacity:.9;

}

/* ===================================================
   TRIP SUMMARY
=================================================== */

.trip-summary{

    padding:60px 10%;

}

.summary-card{

    max-width:820px;

    margin:auto;

    background:white;

    border-radius:22px;

    padding:40px 45px;

    box-shadow:

    0 20px 50px rgba(0,0,0,.08);

}

.summary-card p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:

    1px solid #eef2f7;

}

.summary-card p:last-child{

    border-bottom:none;

}

.summary-card strong{

    color:#0f172a;

    font-size:17px;

}

.summary-card span{

    color:#2563eb;

    font-size:17px;

    font-weight:600;

}

/* ===================================================
   TRIP TYPE
=================================================== */

.trip-type-section{

    padding:0 10% 60px;

    text-align:center;

}

.trip-type-section h2{

    color:#0f172a;

    margin-bottom:25px;

}

.trip-selector{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.trip-selector input{

    display:none;

}

.trip-option{

    min-width:180px;

    padding:18px;

    border-radius:60px;

    border:2px solid #dbe3ef;

    background:white;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    transition:.35s;

    user-select:none;

}

.trip-option:hover{

    transform:translateY(-4px);

    border-color:#2563eb;

}

#oneWay:checked + .trip-option{

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #1d4ed8

    );

    color:white;

    border-color:#2563eb;

    box-shadow:

    0 15px 30px rgba(37,99,235,.30);

}

#roundTrip:checked + .trip-option{

    background:

    linear-gradient(

    135deg,

    #16a34a,

    #15803d

    );

    color:white;

    border-color:#16a34a;

    box-shadow:

    0 15px 30px rgba(22,163,74,.30);

}

.trip-description{

    margin-top:25px;

    color:#64748b;

    font-size:15px;

}

/* ===================================================
   VEHICLE SECTION
=================================================== */

.vehicles-section{

    padding:0 10% 80px;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    font-size:38px;

    color:#0f172a;

    margin-bottom:10px;

}

.section-title p{

    color:#64748b;

}

/* ===================================================
   GRID
=================================================== */

.cars-grid{

    display:grid;

    grid-template-columns:

    repeat(

    auto-fit,

    minmax(360px,1fr)

    );

    gap:35px;

}

/* ===================================================
   VEHICLE CARD
=================================================== */

.vehicle-card{

    position:relative;

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}

.vehicle-card:hover{

    transform:

    translateY(-12px);

    box-shadow:

    0 30px 60px rgba(0,0,0,.15);

}

.vehicle-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;

}

.vehicle-card:hover img{

    transform:scale(1.06);

}

.vehicle-card h2{

    text-align:center;

    margin-top:25px;

    margin-bottom:8px;

    color:#0f172a;

    font-size:30px;

    font-weight:700;

}

.vehicle-card>p{

    text-align:center;

    color:#64748b;

    font-size:16px;

    margin-bottom:25px;

}

/* ===================================================
   POPULAR BADGE
=================================================== */

.popular-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:

    linear-gradient(

    135deg,

    #facc15,

    #f59e0b

    );

    color:#111827;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    box-shadow:

    0 12px 25px rgba(0,0,0,.18);

    z-index:2;

}
/* ===================================================
   PRICING BOX
=================================================== */

.pricing-box{

    margin:25px;

    padding:30px;

    background:linear-gradient(180deg,#ffffff,#f8fafc);

    border:2px solid #e2e8f0;

    border-radius:20px;

    transition:.35s;

}

.pricing-box:hover{

    border-color:#16a34a;

    box-shadow:
    0 20px 40px rgba(22,163,74,.12);

}

.pricing-box h3{

    text-align:center;

    color:#16a34a;

    font-size:26px;

    margin-bottom:25px;

}

.pricing-box p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    font-size:16px;

    color:#475569;

    border-bottom:1px solid #edf2f7;

}

.pricing-box p:last-of-type{

    border-bottom:none;

}

.pricing-box strong{

    color:#0f172a;

    font-weight:700;

}

/* ===================================================
   ESTIMATED FARE
=================================================== */

.fare-label{

    text-align:center;

    font-size:14px;

    color:#64748b;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-top:25px;

}

.pricing-box h2{

    margin:10px 0 25px;

    text-align:center;

    font-size:48px;

    color:#16a34a;

    font-weight:700;

}

.pricing-box hr{

    border:none;

    border-top:1px dashed #d1d5db;

    margin:25px 0;

}

/* ===================================================
   BOOK BUTTON
=================================================== */

.pricing-box button{

    width:100%;

    padding:17px;

    border:none;

    border-radius:14px;

    background:

    linear-gradient(
    135deg,
    #16a34a,
    #15803d
    );

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:
    0 12px 25px rgba(22,163,74,.25);

}

.pricing-box button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 35px rgba(22,163,74,.35);

}

/* ===================================================
   FEATURES
=================================================== */

.note{

    margin:0 25px 30px;

    padding:20px;

    background:#f8fafc;

    border-left:5px solid #16a34a;

    border-radius:14px;

    color:#475569;

    line-height:1.9;

    font-size:15px;

}

/* ===================================================
   IMPORTANT NOTE
=================================================== */

.pricing-note{

    padding:0 10% 80px;

}

.note-card{

    background:

    linear-gradient(
    135deg,
    #fff8e7,
    #fffdf7
    );

    border-left:6px solid #f59e0b;

    border-radius:20px;

    padding:35px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.05);

}

.note-card h3{

    color:#92400e;

    margin-bottom:20px;

    font-size:26px;

}

.note-card ul{

    margin:0;

    padding-left:20px;

}

.note-card li{

    margin-bottom:15px;

    line-height:1.8;

    color:#475569;

}

/* ===================================================
   ANIMATIONS
=================================================== */

.vehicle-card{

    animation:fadeUp .5s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:1024px){

.page-banner,
.trip-summary,
.trip-type-section,
.vehicles-section,
.pricing-note{

padding-left:6%;
padding-right:6%;

}

}

@media(max-width:768px){

.page-banner{

padding:55px 20px;

}

.page-banner h1{

font-size:34px;

}

.page-banner p{

font-size:16px;

}

.summary-card{

padding:28px;

}

.summary-card p{

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.trip-selector{

flex-direction:column;

}

.trip-option{

width:100%;
max-width:320px;

}

.cars-grid{

grid-template-columns:1fr;

}

.vehicle-card img{

height:230px;

}

.pricing-box{

margin:20px;

padding:24px;

}

.pricing-box h2{

font-size:42px;

}

.note{

margin:20px;

}

}

@media(max-width:480px){

.page-banner h1{

font-size:28px;

}

.summary-card{

padding:22px;

}

.summary-card strong,
.summary-card span{

font-size:15px;

}

.pricing-box{

margin:15px;

padding:20px;

}

.pricing-box h3{

font-size:22px;

}

.pricing-box h2{

font-size:36px;

}

.pricing-box button{

font-size:16px;

padding:15px;

}

.note-card{

padding:25px;

}

.note-card h3{

font-size:22px;

}

}

/* ===================================================
   PREMIUM SCROLLBAR
=================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef2f7;

}

::-webkit-scrollbar-thumb{

background:#16a34a;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#15803d;

}