/*
Template Name: Maxus Luxury Auto
File: Models CSS (Dealership Lineup)
*/

/********************* Breadcrumb Hero ****************/
.center_o {
    /* High-end moody showroom or lifestyle lineup shot */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../img/hero_image/banner-maxus.jpg);
    background-position: center 65%;
    background-size: cover no-repeat;
   
}
.center_om {
    padding-top: 150px;
    padding-bottom: 100px;
}

/********************* Vehicle Category Headers ****************/
.model-category-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.5rem;
    color: #121212;
    border-left: 5px solid #004C97; /* Maxus Blue */
    padding-left: 15px;
    margin-bottom: 30px;
    margin-top: 40px;
}

/********************* Model Cards ****************/
.model_pg1i {
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
}
.model_pg1i:hover {
    box-shadow: 0 20px 40px rgba(0, 76, 151, 0.08);
    transform: translateY(-8px);
}

.model_pg1i1 {
    overflow: hidden;
    background: #F4F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.model_pg1i1 img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: multiply; /* Removes white backgrounds on car renders */
}
.model_pg1i:hover .model_pg1i1 img {
    transform: scale(1.08);
}

.model_m {
    border-top: 3px solid transparent !important;
    transition: 0.3s ease;
}
.model_pg1i:hover .model_m {
    border-top: 3px solid #004C97 !important;
}

.model_pg1i2l h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.model-tag {
    background: #004C97;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
}

/* Feature Grid */
.model_pg1i3 {
    background: #FAFAFA;
    padding: 15px;
    border: 1px solid #F0F0F0;
}
.model_pg1i3 h6 {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}
.model_pg1i3 i {
    width: 20px;
    text-align: center;
}

/* Coming Soon Card */
.coming-soon-card {
    opacity: 0.7;
    filter: grayscale(100%);
    pointer-events: none;
}
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #121212;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

@media screen and (max-width : 767px){
    .model_pg1i { margin-top:15px; }
    .model_pg1i3 { text-align: left !important; }
    .model_pg1i3l.text-end { text-align: left !important; }
}