/* ================================
   FLOATING CONTACT BUTTONS
================================ */

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all .3s ease;
    box-shadow: 0 7px 22px rgba(0,0,0,.18);
}

.floating-btn i {
    font-size: 21px;
    color: #fff;
    transition: .3s ease;
}

.floating-btn span {
    position: absolute;
    right: 62px;
    white-space: nowrap;
    background: #fff;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #003f7d;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all .25s ease;
}

.floating-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* WhatsApp */
.whatsapp-btn {
    background: #ee1a20;
}

.whatsapp-btn:hover {
    background: #003f7d;
}

/* Call */
.call-floating-btn {
    background: #003f7d;
}

.call-floating-btn:hover {
    background: #ee1a20;
}





/* Mobile */
@media(max-width:575px) {

    .floating-contact {
        right: 14px;
        bottom: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 47px;
        height: 47px;
    }

    .floating-btn i {
        font-size: 19px;
    }

    .floating-btn span {
        display: none;
    }
}