/* =========================================
   1. BANNER DINAMIS HALAMAN MODELS
   ========================================= */
   .models-hero-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px; /* Jarak agar tidak tertutup navbar */
}

.models-hero-banner h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

/* =========================================
   2. MEMAKSA GAMBAR MOBIL AGAR TIDAK BOCOR
   ========================================= */
   .car-grid-item { 
    background: transparent; border: none; border-radius: 0; 
    /* Padding diubah: atas 0, kiri-kanan 10px, bawah 15px agar gambar lebih leluasa */
    padding: 0 10px 15px; 
    text-align: center; transition: 0.3s; position: relative; height: 100%; box-shadow: none; 
    display: flex; flex-direction: column; justify-content: space-between; 
}
.car-grid-item:hover { transform: translateY(-5px); box-shadow: none; border: none; }

.car-grid-content { flex-grow: 1; }
.car-grid-action { margin-top: 15px; width: 100%; display: flex; gap: 8px; flex-direction: column; }
.car-grid-action .btn { width: 100%; justify-content: center; }

/* Ini yang bikin gambar rapi */
.car-thumb {
    width: 100% !important;
    height: 240px !important; /* DIBESARKAN dari 200px agar mobil terlihat lebih gagah */
    object-fit: contain !important;
    object-position: center; 
    margin-bottom: 15px; 
    transition: transform 0.3s ease;
}
.car-grid-item:hover .car-thumb { transform: scale(1.05); }

/* --- PERUBAHAN MENGIKUTI PATOKAN PRICE LIST --- */
.category-title { 
    font-size: 24px; 
    font-weight: 700; 
    text-transform: none; 
    color: #222; 
    border-left: 5px solid #cb0c0c; 
    padding-left: 15px; 
    margin-bottom: 30px; 
    margin-top: 20px; 
}

.car-grid-name { 
    font-weight: 900 !important; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    color: #000 !important; 
    margin-bottom: 5px; 
}

.car-grid-price-label { 
    font-weight: 700 !important; 
    font-size: 14px; 
    color: #333 !important; 
    text-transform: none; 
    margin-bottom: 2px; 
}

.car-grid-price { 
    font-weight: 900 !important; 
    font-size: 16px; 
    color: #000 !important; 
    margin-bottom: 10px; 
}

/* =========================================
   3. RESPONSIVE MOBILE (HP)
   ========================================= */
@media (max-width: 768px) {
    .models-hero-banner { height: 250px; }
    .models-hero-banner h1 { font-size: 2.5rem; }
    
    .category-title { font-size: 20px; } 
    .car-grid-item { padding: 0 5px 10px !important; } /* Mengurangi padding di HP */
    .car-thumb { height: 150px !important; margin-bottom: 10px !important; } /* DIBESARKAN dari 120px */
    .car-grid-name { font-size: 0.9rem !important; margin-bottom: 2px !important; }
    .car-grid-price-label { font-size: 12px !important; margin-bottom: 0px !important; }
    .car-grid-price { font-size: 14px !important; margin-bottom: 8px !important; }
}

/* =========================================
   4. JUDUL HALAMAN (LINE UP MITSUBISHI)
   ========================================= */
.section-title {
    font-size: 24px !important; 
    font-weight: 700 !important; 
    text-transform: none !important; /* Mematikan huruf kapital semua */
    color: #222 !important; 
    margin-bottom: 5px;
}

/* Garis merah kecil di bawah judul */
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #cb0c0c; /* Merah Mitsubishi */
    margin: 15px auto 0;
}