/* أزرار الاتصال والواتس الثابتة للموبايل */
.mobile-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.mobile-contact-buttons .contact-btn {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    text-align: center;
    line-height: 60px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.mobile-contact-buttons .call-btn {
    background-color: #007bff;
}

.mobile-contact-buttons .whatsapp-btn {
    background-color: #25d366;
}

.mobile-contact-buttons .contact-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.mobile-contact-buttons .contact-btn i {
    font-size: 24px;
}

/* إظهار الأزرار على الشاشات الصغيرة فقط */
@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: block;
    }
}

/* تنسيق روابط الهاتف */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    color: #d5ac63;
    text-decoration: none;
}