.whatsapp-float,
.phone-float{
    position: fixed;
    left: 25px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff !important;

    font-size: 24px;
    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    transition: all .25s ease;
}

.phone-float{
    bottom:70px;
    background:#dc3545;
}

.phone-float:hover{
    background:#c82333;
    transform:translateY(-3px);
}

.whatsapp-float{
    bottom:10px;
    background:#25D366;
    animation:pulse 2s infinite;
}

.whatsapp-float:hover{
    background:#20ba5a;
    transform:translateY(-3px);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media (max-width:768px){

    .whatsapp-float,
    .phone-float{

        left:15px;

        width:55px;
        height:55px;

        font-size:26px;
    }

    .whatsapp-float{
        bottom:20px;
    }

    .phone-float{
        bottom:85px;
    }
}

.home-float,
.phone-float,
.whatsapp-float{
    position: fixed;
    left: 25px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;

    font-size: 24px;

    z-index: 99999;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    transition: all .25s ease;
}

.home-float{
    bottom:130px;
    background:#0d6efd;
}

.home-float:hover{
    background:#0b5ed7;
    transform:translateY(-3px);
}

.phone-float{
    bottom:70px;
    background:#dc3545;
}

.whatsapp-float{
    bottom:10px;
    background:#25D366;
}

@media(max-width:768px){

    .home-float,
    .phone-float,
    .whatsapp-float{
        left:15px;
        width:55px;
        height:55px;
        font-size:26px;
    }

    .home-float{
        bottom:150px;
    }

    .phone-float{
        bottom:85px;
    }

    .whatsapp-float{
        bottom:20px;
    }
}

.language-float{
    position:fixed;
    right:24px;
    bottom:70px;

    width:40px;
    height:40px;

    border-radius:50%;
    background:#0d6efd;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:18px;
    font-weight:bold;

    box-shadow:0 2px 8px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.language-float:hover{
    background:#0b5ed7;
    color:#fff;
    transform:scale(1.08);
}

/* Rights Button Styles */
.rights-float{
    position:fixed;
    right:20px;
    bottom:120px;

    width:50px;
    height:50px;

    border-radius:50%;
    background:#28a745;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:22px;

    box-shadow:0 3px 10px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
    cursor:pointer;
}

.rights-float:hover{
    background:#218838;
    color:#fff;
    transform:scale(1.08);
}

.rights-float.active{
    background:#218838;
    transform:rotate(180deg);
}

/* Rights Submenu */
.rights-submenu{
    position:fixed;
    right:20px;
    bottom:180px;
    
    display:none;
    flex-direction:column;
    gap:10px;
    
    z-index:9998;
}

.rights-submenu.show{
    display:flex;
    animation:slideIn .3s ease;
}

.rights-submenu-item{
    width:45px;
    height:45px;
    
    border-radius:50%;
    background:#6c757d;
    color:#fff;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    text-decoration:none;
    font-size:20px;
    
    box-shadow:0 2px 8px rgba(0,0,0,.3);
    transition:.3s;
    opacity:0;
    transform:translateX(50px);
}

.rights-submenu.show .rights-submenu-item{
    opacity:1;
    transform:translateX(0);
}

.rights-submenu.show .rights-submenu-item:nth-child(1){animation-delay:.05s;}
.rights-submenu.show .rights-submenu-item:nth-child(2){animation-delay:.1s;}
.rights-submenu.show .rights-submenu-item:nth-child(3){animation-delay:.15s;}
.rights-submenu.show .rights-submenu-item:nth-child(4){animation-delay:.2s;}
.rights-submenu.show .rights-submenu-item:nth-child(5){animation-delay:.25s;}
.rights-submenu.show .rights-submenu-item:nth-child(6){animation-delay:.3s;}
.rights-submenu.show .rights-submenu-item:nth-child(7){animation-delay:.35s;}
.rights-submenu.show .rights-submenu-item:nth-child(8){animation-delay:.4s;}

.rights-submenu-item:hover{
    background:#5a6268;
    color:#fff;
    transform:scale(1.1);
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .rights-float{
        right:15px;
        bottom:130px;
        width:55px;
        height:55px;
        font-size:24px;
    }
    
    .rights-submenu{
        right:15px;
        bottom:195px;
    }
    
    .rights-submenu-item{
        width:50px;
        height:50px;
        font-size:22px;
    }
}