/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 20px rgba(37, 211, 102, 0.6);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    background-color: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* RTL adjustment */
.rtl .whatsapp-float {
    left: auto;
    right: 30px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .rtl .whatsapp-float {
        left: auto;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}