/* زر الواتساب - يمين أسفل الشاشة */
.fixed-whatsapp {
    position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 1000;
}

.fixed-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #758f6c;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* زر الاتصال - يسار أسفل الشاشة */
.fixed-call {
    position: fixed;
    bottom: 75px;
    left: 20px;
    z-index: 1000;
}

.fixed-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #2c2f2e;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* تحسين التجاوب */
@media (max-width: 768px) {
    .fixed-whatsapp a,
    .fixed-call a {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .fixed-whatsapp a,
    .fixed-call a {
        width: 65px;
        height: 65px;
        font-size: 40px;
    }
}