.whatsapp-float{
    position: fixed;
    bottom: 50px;
    right: 25px;
    z-index: 1000;

    display: flex;
    align-items: center;
    gap: 8px;

    background-color: #1d6b46;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;

    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    color: #fff;
}

.whatsapp-float img{
    width: 22px;
    height: 22px;
}

/* Mobile: slightly smaller and closer to edge */
@media (max-width: 576px){
    .whatsapp-float{
        bottom: 50px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }
    .whatsapp-float img{
        width: 18px;
        height: 18px;
    }
}