/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 44px;
    height: 44px;
    bottom: 90px; /* Raised to avoid conflict with Back to Top button */
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.messenger-float {
    position: fixed;
    width: 44px;
    height: 44px;
    bottom: 140px;
    right: 30px;
    background-color: #0084ff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.messenger-float:hover {
    background: #005ecb;
    color: #fff;
    text-decoration: none;
}

.call-float {
    position: fixed;
    width: 44px;
    height: 44px;
    bottom: 190px;
    right: 30px;
    background-color: #34b7f1;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.call-float:hover {
    background: #1a8ed1;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 80px; /* slightly less space on mobile */
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .messenger-float {
        bottom: 120px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .call-float {
        bottom: 160px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    text-decoration: none;
}
