/* css/home-search.css */

/* Efek Card Formulir Modern */
.search-card {
    border: none;
    border-radius: 16px;
    background: #86b7f;/*#ffffff*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12) !important;
}

/* Kustomisasi Input Box */
.input-search-custom {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.input-search-custom:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Animasi Denyut Halus pada Ikon */
.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Ilustrasi Wrapper */
.illustration-vector svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsivitas Grid */
@media (max-width: 991px) {
    .illustration-vector {
        margin-bottom: 2rem;
        order: -1; /* Pindahkan gambar ke atas formulir pada layar HP */
    }
    .search-card {
        padding: 1.5rem !important;
    }
}