/* Social Media Icons in Footer */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.social-icons a i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Specific colors on hover */
.social-icons a:hover .fa-facebook-f {
    color: #1877f2;
}

.social-icons a:hover .fa-tiktok {
    color: #000000;
}

.social-icons a:hover .fa-instagram {
    color: #e4405f;
}

/* Responsive */
@media (max-width: 768px) {
    .footer .container > div {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .social-icons a {
        width: 42px !important;
        height: 42px !important;
        font-size: 18px !important;
        flex-shrink: 0;
    }
    
    .social-icons a i {
        display: inline-block !important;
        font-style: normal !important;
        font-variant: normal !important;
        text-rendering: auto !important;
        line-height: 1 !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    /* التأكد من عرض Font Awesome */
    .social-icons a i::before {
        display: inline-block !important;
        font-family: "Font Awesome 6 Brands" !important;
        font-weight: 400 !important;
    }
}

/* للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}
