.footer-logo-img {
    height: 2.6rem !important;
  }

/* زر الواتساب */
.whatsapp-btn {
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 1000;
    background: #9c8e78;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* تعديل الظل ليتناسب مع اللون الأساسي */
    box-shadow: 0 4px 12px rgba(156, 142, 120, 0.5); 
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

/* تأثير عند تمرير الماوس */
.whatsapp-btn:hover {
    transform: scale(1.1);
    /* زيادة توهج الظل بنفس الدرجة */
    box-shadow: 0 6px 20px rgba(156, 142, 120, 0.7);
}

.whatsapp-btn i {
    color: #fff;
    font-size: 32px;
}

/* حركة النبض (Pulse) */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(156, 142, 120, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(156, 142, 120, 0.8);
    }
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 26px;
    }
}
}