.whatsapp-float-left{
    position: fixed;
    left: 20px;
    bottom: 25px;
    background: #25D366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s ease;
}

.whatsapp-float-left i{
    font-size: 22px;
}

.whatsapp-float-left:hover{
    transform: translateY(-5px);
    background: #1ebe5d;
}

/* 📱 MOBILE - MAKE IT PERFECT CIRCLE */
@media (max-width: 768px){
    .whatsapp-float-left{
        width: 55px;
        height: 55px;
        left: 15px;
        bottom: 18px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float-left span{
        display: none;
    }

    .whatsapp-float-left i{
        font-size: 24px;
    }
}
