body{
    font-family: 'Poppins', sans-serif;
    color:#222;
}

/* NAVBAR */
.navbar{
    padding:15px 0;
}

.navbar-brand{
    font-size:28px;
}

/* HERO */
.hero-section{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)),
        url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
}

/* BOOKING CARD */
.booking-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
}

/* SECTION TITLE */
.section-subtitle{
    color:#d4a017;
    font-weight:600;
}

```css
/* =========================
   VEHICLE SECTION
========================= */

.vehicle-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:0.4s ease;
    border:1px solid #eee;

    width:100%;
    max-width:418px;

    display:flex;
    flex-direction:column;

    min-height:560px;
}

/* HOVER */
.vehicle-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* =========================
   VEHICLE IMAGE SIZE
   MATCHING UPLOADED IMAGE
========================= */

.vehicle-img{
    width:100%;
    height:300px; /* UPDATED HEIGHT */
    object-fit:cover;
    display:block;
}

/* CONTENT */
.vehicle-content{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* TITLE */
.vehicle-content h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:12px;
}

/* DESCRIPTION */
.vehicle-content p{
    color:#666;
    margin-bottom:18px;
    font-size:15px;
    line-height:1.7;
    min-height:55px;
}

/* FEATURES */
.vehicle-content ul{
    list-style:none;
    padding:0;
    margin:0 0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;

    flex-grow:1;
}

.vehicle-content ul li{
    color:#555;
    font-size:14px;
}

/* BUTTON */
.vehicle-content .btn{
    margin-top:auto;
    border-radius:10px;
    padding:12px;
    font-weight:600;
}

/* MOBILE */
@media(max-width:991px){

    .vehicle-card{
        min-height:auto;
        max-width:100%;
    }

}

@media(max-width:768px){

    .vehicle-img{
        height:260px;
    }

    .vehicle-content h4{
        font-size:24px;
    }

}

```css
```css
/* =========================
   SAFARI CARDS
========================= */

.safari-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s ease;
    border:none;

    width:100%;
    max-width:420px;

    display:flex;
    flex-direction:column;

    min-height:560px;
}

/* SHADOW HOVER */
.safari-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
}

/* IMAGE */
.safari-img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

/* CONTENT */
.safari-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/* TITLE */
.safari-content h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:14px;
    line-height:1.4;
}

/* DESCRIPTION */
.safari-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;

    min-height:60px;
}

/* DETAILS */
.safari-details{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:auto;
    margin-bottom:20px;
}

/* BUTTON */
.safari-content .btn{
    border-radius:10px;
    padding:12px;
    font-weight:600;
}

/* MOBILE */
@media(max-width:991px){

    .safari-card{
        max-width:100%;
        min-height:auto;
    }

}

@media(max-width:768px){

    .safari-img{
        height:240px;
    }

    .safari-content h4{
        font-size:24px;
    }

}

```css id="wz7m8u"
/* =========================
   FOOTER
========================= */

.main-footer{
    background:#0b1727;
    color:#fff;
    position:relative;
}

/* FOOTER TOP */
.footer-top{
    padding:80px 0 50px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* FOOTER TITLE */
.footer-title{
    font-size:34px;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

/* FOOTER TEXT */
.footer-text{
    color:#cfcfcf;
    line-height:1.9;
    font-size:15px;
}

/* FOOTER HEADING */
.footer-heading{
    font-size:22px;
    font-weight:700;
    margin-bottom:28px;
    color:#fff;
}

/* FOOTER LINKS */
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s ease;
    font-size:15px;
}

.footer-links li a:hover{
    color:#fcb900;
    padding-left:6px;
}

/* CONTACT LIST */
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-bottom:18px;

    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* ICONS */
.footer-contact li i{
    color:#fcb900;
    margin-top:5px;
    font-size:16px;
}

/* CONTACT LINKS */
.footer-contact li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
}

.footer-contact li a:hover{
    color:#fcb900;
}

/* SOCIAL ICONS */
.footer-social{
    margin-top:30px;
}

.footer-social a{
    width:45px;
    height:45px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    margin-right:10px;

    color:#fff;
    text-decoration:none;

    transition:0.3s ease;
}

.footer-social a:hover{
    background:#fcb900;
    color:#000;
    transform:translateY(-5px);
}

/* FOOTER BOTTOM */
.main-footer{ background:#0b1727; color:#fff; }
.footer-bottom{
    padding:22px 0;
}

/* COPYRIGHT */
.copyright-text{
    color:#cfcfcf;
    font-size:15px;
}

/* BOTTOM LINKS */
.footer-bottom a{
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.footer-bottom a:hover{
    color:#fcb900;
}

/* RESPONSIVE */
@media(max-width:991px){

    .footer-top{
        padding:60px 0 30px;
    }

}

@media(max-width:768px){

    .footer-title{
        font-size:28px;
    }

    .footer-heading{
        font-size:20px;
    }

    .footer-text,
    .footer-links li a,
    .footer-contact li,
    .copyright-text{
        font-size:14px;
    }

    .footer-social a{
        width:40px;
        height:40px;
    }

}
