body {
    background: #ffffff;
    color: #1f2937;
}

/* Navbar */
.navbar-brand {
    letter-spacing: -0.5px;
}

.navbar .nav-link {
    font-weight: 500;
    color: #374151;
}

.navbar .nav-link:hover {
    color: #000;
}

/* Hero */
.hero-section {
    min-height: 78vh;
    padding: 80px 0;
    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #eef2f7 100%
        );
}

.hero-section h1 {
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-search-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #eeeeee;
}

.hero-search-card .form-control,
.hero-search-card .form-select,
.hero-search-card .input-group-text {
    min-height: 52px;
}

.hero-search-card .input-group-text {
    background: #f8f9fa;
}

.hero-search-card .form-control:focus,
.hero-search-card .form-select:focus {
    box-shadow: none;
    border-color: #212529;
}

/* Buttons */
.btn {
    transition: all 0.2s ease;
}

.btn-dark:hover {
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.7rem;
    }

}

@media (max-width: 576px) {

    .hero-section {
        padding: 45px 0;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-search-card {
        padding: 22px;
        border-radius: 18px;
    }

}





/* ==============================
   Vehicles
================================ */

.vehicles-section {
    background: #ffffff;
}

.vehicle-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

.vehicle-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f5f5f5;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.04);
}

.vehicle-type {
    position: absolute;
    top: 16px;
    left: 16px;

    background: #ffffff;
    color: #212529;

    padding: 7px 14px;

    border-radius: 50px;

    font-size: 0.8rem;
    font-weight: 700;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.vehicle-features {
    color: #6c757d;
    font-size: 0.88rem;
}



/* ==============================
   Why Choose Us
================================ */

.why-us-section {
    background: #f8f9fa;
}

.section-heading {
    max-width: 650px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    transition: all 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.benefit-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #212529;
    color: #ffffff;

    border-radius: 18px;

    font-size: 1.6rem;
}


/* ==============================
   How It Works
================================ */

.how-it-works {
    background: #ffffff;
}

.step-number {
    width: 65px;
    height: 65px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #212529;
    color: #ffffff;

    border-radius: 50%;

    font-size: 1.3rem;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}





/* ==============================
   Vehicle Details
================================ */

.vehicle-detail-section {
    background: #f8f9fa;
}

.detail-image-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.detail-image-wrapper img {
    height: 520px;
    object-fit: cover;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #ffffff;
    padding: 18px;

    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

@media (max-width: 991px) {

    .detail-image-wrapper img {
        height: 400px;
    }

}

@media (max-width: 576px) {

    .detail-image-wrapper img {
        height: 280px;
    }

}





/* ==============================
   Booking Page
================================ */

.booking-section {
    background: #f8f9fa;
    min-height: 80vh;
}

.booking-card,
.booking-summary {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    padding: 32px;
}

.booking-summary {
    position: sticky;
    top: 100px;
}

.booking-card .form-control {
    border-radius: 10px;
}

.booking-card .form-control:focus {
    border-color: #212529;
    box-shadow: none;
}

.summary-vehicle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.summary-vehicle img {
    width: 110px;
    height: 85px;
    object-fit: cover;
    border-radius: 14px;
}

.booking-note {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .booking-summary {
        position: static;
    }

}

@media (max-width: 576px) {

    .booking-card,
    .booking-summary {
        padding: 22px;
    }

    .summary-vehicle img {
        width: 90px;
        height: 75px;
    }

}