/* أنماط أيقونات وسائل التواصل الاجتماعي */
.social-media-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-media-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.social-media-icons a.whatsapp-icon {
    background-color: #25D366;
}

.social-media-icons a.whatsapp-icon:hover {
    background-color: #128C7E;
}

.social-media-icons a:nth-child(2) {
    background-color: #1877F2;
}

.social-media-icons a:nth-child(2):hover {
    background-color: #0E5A9E;
}

.social-media-icons a:nth-child(3) {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-media-icons a:nth-child(3):hover {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D, #405DE6, #5851DB);
}

/* تحسين عرض أيقونات التواصل الاجتماعي على الأجهزة المحمولة */
@media (max-width: 767px) {
    .social-media-icons a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
