body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

/* NAV OFFSET */
body {
    padding-top: 70px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Background Images */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroSlider 8s infinite;
    opacity: 0;
}

.hero-bg-1 {
    background-image: url("../img/car-4.jpg");
    animation-delay: 0s;
}

.hero-bg-2 {
    background-image: url("../img/car-5.jpg");
    animation-delay: 6s;
}

.hero-bg-3 {
    background-image: url("../img/car-7.jpg");
    animation-delay: 12s;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Animation */
@keyframes heroSlider {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
}

/* SEARCH BOX – GLASS EFFECT */
.search-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.search-box label {
    font-weight: 600;
    color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .search-box {
        padding: 20px;
    }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 800;
}

/* CAR CARD */
.car-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    overflow: hidden;
}

.car-card img {
    height: 220px;
    object-fit: cover;
}

.car-card:hover {
    transform: translateY(-8px);
}

/* FEATURES */
.features i {
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* STEPS */
.steps {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
}

/* CTA */
.cta {
    background: linear-gradient(90deg, #0d6efd, #003d99);
    color: #fff;
    padding: 60px 20px;
    border-radius: 20px;
}

/* FOOTER */
footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 50px 0;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

        /* PAGE HEADER */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
                url("../img/car-8.jpg") center/cover no-repeat;
            padding: 110px 20px;
            color: #fff;
            text-align: center;
        }

        /* INFO BAR */
        .info-bar {
            background: #ffffff;
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
            margin-top: -50px;
            z-index: 2;
            position: relative;
        }

        /* FILTER */
        .filter-box {
            background: #fff;
            padding: 20px;
            border-radius: 14px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .price {
            font-size: 20px;
            font-weight: bold;
            color: #0d6efd;
        }

        /* FEATURES */
        .feature-box {
            background: #fff;
            border-radius: 14px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
        }