/* WhatsApp Floating Button - Exact Reference Style */
.whatsapp-float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 80px;
    right: 35px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    outline: none;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 55px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 48px;
        height: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .scroll-to-top {
        bottom: 10px !important;
    }
}