#contact {
    position: relative;
    background: none;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/WhatsApp Image 2026-03-09 at 10.25.32.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact .product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

#contact .product-card:hover {
    background: white;
    transform: translateY(-5px);
}

@media (max-width: 780px) {
    #contact::before {
        background-attachment: scroll;
    }
}