/* ============================================
   AVTOBAZA - Footer Styles
   Find Part Modal & Animations
   Version: 1.0.0
   ============================================ */

/* ============================================
   1. FIND PART MODAL STYLES
   ============================================ */

/* Modal Backdrop */
#findPartModal.modal {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

/* Form Control Focus */
#findPartModal .form-control:focus {
    border-color: #ffb91d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 185, 29, 0.1);
}

/* Submit Button Hover */
#findPartModal button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 185, 29, 0.4);
}

#findPartModal button[type="submit"]:active {
    transform: translateY(0);
}

/* File Upload Button Hover */
#findPartModal .custom-file-upload button:hover {
    border-color: #ffb91d;
    background: #fff8e6;
}

/* VIN Input Uppercase */
#vin_number {
    text-transform: uppercase;
}

/* Image Preview Animation */
#vehicle_registration_preview img,
#part_photo_preview img {
    animation: fadeInScale 0.3s ease-in;
}

/* ============================================
   2. ANIMATIONS
   ============================================ */

/* Fade In Scale Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Spin Animation (for loading spinner) */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   END OF FOOTER.CSS
   ============================================ */

