/* ============================================
   PAKSA TARIK TEKS KE ATAS - MOBILE ONLY!
   ============================================ */

@media screen and (max-width: 768px) {
    
    /* CAR CARD - POSITION RELATIVE UNTUK ABSOLUTE POSITIONING */
    .car-card {
        position: relative !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        background: white !important;
        border-radius: 16px !important;
    }
    
    /* IMAGE CONTAINER - BIARKAN UKURAN ASLI */
    .car-image-container {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 1 !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    /* IMAGE - UKURAN ASLI FOTO */
    .car-image-container img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: contain !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    /* CAR INFO - PAKSA TARIK KE ATAS DENGAN MARGIN NEGATIF SUPER BESAR! */
    .car-info {
        position: relative !important;
        z-index: 2 !important;
        margin-top: -80px !important;
        padding: 0.5rem 0.8rem !important;
        background: white !important;
        border-radius: 0 0 16px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media screen and (max-width: 480px) {
    /* UNTUK LAYAR KECIL - TARIK SUPER JAUH! */
    .car-info {
        margin-top: -100px !important;
        padding: 0.4rem 0.6rem !important;
    }
}

/* ============================================
   DISABLE HOVER EFFECTS - MOBILE ONLY!
   ============================================ */

@media screen and (max-width: 768px) {
    
    /* HILANGKAN SEMUA HOVER EFFECTS PADA CAR CARD */
    .car-card:hover,
    .cars-section .car-card:hover,
    body .cars-section .car-card:hover,
    html body .cars-section .car-card:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        border-color: transparent !important;
    }
    
    /* HILANGKAN HOVER EFFECTS PADA GAMBAR */
    .car-card:hover img,
    .cars-section .car-card:hover img,
    body .cars-section .car-card:hover img,
    html body .cars-section .car-card:hover img {
        transform: none !important;
        scale: 1 !important;
    }
    
    /* HILANGKAN HOVER EFFECTS PADA FEATURE TAGS */
    .feature-tag:hover,
    .car-features .feature-tag:hover {
        background: rgba(6, 182, 212, 0.1) !important;
        color: #06b6d4 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* HILANGKAN HOVER EFFECTS PADA BUTTONS */
    .book-btn:hover,
    .car-card .book-btn:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3) !important;
        background: var(--dark-navy) !important;
    }
    
    /* DISABLE SEMUA TRANSITIONS UNTUK PERFORMA */
    .car-card,
    .car-card *,
    .car-card img,
    .feature-tag,
    .book-btn {
        transition: none !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
    }
}

