/* =========================================
   📞 تنسيق الأزرار العائمة (Floating Buttons)
   ========================================= */

.floating-actions {
    position: fixed;
    bottom: 30px; /* المسافة من الأسفل */
    right: 30px;   /* المسافة من اليمين (RTL) */
    z-index: 99999; /* رقم عالي جداً عشان يظهر فوق كل العناصر */
    display: flex;
    flex-direction: column; /* الأزرار فوق بعض */
    gap: 15px; /* مسافة بين الزرين */
}

/* التنسيق العام للزر */
.fab-btn {
    width: 60px;
    height: 60px;
    background-color: #333;
    color: #fff;
    border-radius: 50%; /* دائرة كاملة */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px; /* حجم الأيقونة */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* ظل */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* --- ألوان الأزرار --- */

/* لون الواتساب الرسمي */
.fab-whatsapp {
    background-color: #25D366;
}

/* لون الاتصال (يأخذ من لون الموقع الأساسي أو لون مخصص) */
.fab-call {
    background-color: var(--primary-color, #007bff); /* لو المتغير مش موجود هياخد الأزرق */
}

/* --- تأثيرات الحركة (Hover) --- */
.fab-btn:hover {
    transform: scale(1.1); /* تكبير بسيط */
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* أنيميشن نبض لزر الاتصال لجذب الانتباه */
.fab-call {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb, 0, 123, 255), 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(var(--primary-rgb, 0, 123, 255), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb, 0, 123, 255), 0); }
}

/* --- تحسين للموبايل --- */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px; /* RTL - اليمين */
        gap: 10px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}