/* تنسيقات أيقونات مواقع التواصل الاجتماعي */

/* قسم مواقع التواصل في الفوتر */
.footer-social-section {
    margin-bottom: 30px;
}

.footer-social-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #FF6F5C, #FF8E7B);
    border-radius: 2px;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-social-item:hover {
    background: var(--social-bg, #FF6F5C);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
    border-color: transparent;
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 12px;
    transition: all 0.3s ease;
}

.footer-social-item:hover .social-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-icon-wrapper i {
    font-size: 1.1rem;
    color: inherit;
}

.social-name {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.no-social-message {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.no-social-message i {
    margin-left: 8px;
    color: #666;
}

.no-social-text {
    color: #999;
    font-size: 0.85rem;
    text-align: center;
    margin: 10px 0;
    font-style: italic;
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .footer-social-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .footer-social-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .social-icon-wrapper {
        width: 30px;
        height: 30px;
        margin-left: 8px;
    }
    
    .social-icon-wrapper i {
        font-size: 1rem;
    }
    
    .social-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .footer-social-item {
        padding: 8px 10px;
        border-radius: 8px;
    }
    
    .social-name {
        font-size: 0.75rem;
    }
}

/* تحسينات إضافية للأيقونات الشائعة */
.footer-social-item[title*="فيسبوك"]:hover {
    --social-bg: #1877F2;
}

.footer-social-item[title*="تويتر"]:hover {
    --social-bg: #1DA1F2;
}

.footer-social-item[title*="إنستغرام"]:hover {
    --social-bg: #E4405F;
}

.footer-social-item[title*="يوتيوب"]:hover {
    --social-bg: #FF0000;
}

.footer-social-item[title*="واتساب"]:hover {
    --social-bg: #25D366;
}

.footer-social-item[title*="تيليجرام"]:hover {
    --social-bg: #0088CC;
}

.footer-social-item[title*="تيك توك"]:hover {
    --social-bg: #000000;
}

.footer-social-item[title*="ديسكورد"]:hover {
    --social-bg: #5865F2;
}

/* تأثيرات متقدمة */
.footer-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-social-item:hover::before {
    opacity: 1;
}

/* تحسين الأيقونات في معلومات الموقع */
.social-media .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--social-color, #FF6F5C);
    color: white;
    text-decoration: none;
    margin: 0 8px 8px 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-media .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* تحسين عرض الأيقونات */
.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .social-media .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 6px 6px 0;
    }
}
