/* زر واتساب رسمي */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: .3s;
}

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

/* أيقونة واتساب */
.whatsapp-floating img {
    width: 35px;
    height: 35px;
}