/*--------------------------------------------------------------
>>> SOCIAL MEDIA LINKS IN MOBILE MENU
----------------------------------------------------------------
Social icons at menu footer
--------------------------------------------------------------*/

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(180deg, transparent 0%, #f9fafb 100%);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Platform-Specific Colors */
.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5cbf 100%);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

/* Social Section Title */
.mobile-menu-social-title {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
/* Hide on Desktop */
@media (min-width: 992px) {
    .mobile-menu-social {
        display: none;
    }
}
