/* Homepage Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
        url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=1800') center center/cover no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 76px;
    line-height: 1;
    max-width: 900px;
    margin-bottom: 24px;
}

.hero p {
    font-size: 22px;
    color: #ddd;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Featured Vehicles */
.featured-vehicles {
    padding: 100px 0;
    background: #111;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.35s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: #C4622D;
}

.vehicle-image {
    display: block;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-card-content {
    padding: 28px;
}

.vehicle-card-subtitle {
    color: #C4622D;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.vehicle-card h2,
.vehicle-card h3 {
    font-size: 34px;
    margin: 0 0 18px;
    line-height: 1.15;
}

.vehicle-price {
    color: #C4622D;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 8px;
}

.vehicle-monthly {
    color: #aaa;
    margin-bottom: 22px;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.vehicle-meta span {
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 10px 14px;
    border-radius: 8px;
    color: #ddd;
    font-size: 14px;
}

/* Sold Badge */
.sold-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #C4622D;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    z-index: 5;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #0d0d0d;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Homepage CTA Strip */
.home-cta-strip {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.2), transparent 35%),
        #161616;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.home-cta-inner {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.home-cta-inner h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.home-cta-inner p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.home-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 1100px) {

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 58px;
    }

}

@media(max-width: 768px) {

    .vehicle-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 75vh;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .vehicle-card h2,
    .vehicle-card h3 {
        font-size: 28px;
    }

    .vehicle-price {
        font-size: 34px;
    }

    .home-cta-inner h2 {
        font-size: 38px;
    }

}
/* Featured Slider */
.featured-stock-section {
    padding: 100px 0;
    position: relative;
}

.featuredSwiper {
    overflow: hidden;
    padding-bottom: 60px;
}

.featuredSwiper .swiper-slide {
    height: auto;
}

.featuredSwiper .vehicle-card {
    height: 100%;
}

.swiper-pagination-bullet {
    background: #666;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #C4622D;
}