/* ============================================
   FOOTER SOCIAL LINKS COMPONENT
   ============================================ */

.footer-social-section {
    margin-top: var(--space-lg);
}

.footer-social-heading {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
    /* margin-top removed as requested */
}

.footer-social-links {
    display: flex;
    gap: var(--space-sm);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-link i {
    font-size: var(--text-base);
    position: relative;
    z-index: 1;
}

/* Facebook - Official Brand Colors */
.footer-social-link.facebook {
    background: #1877F2;
}

.footer-social-link.facebook:hover {
    background: #166FE5;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-social-link.facebook i {
    color: #ffffff !important;
}

/* LinkedIn - Official Brand Colors */
.footer-social-link.linkedin {
    background: #0077B5;
}

.footer-social-link.linkedin:hover {
    background: #005885;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.footer-social-link.linkedin i {
    color: #ffffff !important;
}

/* Instagram - Official Brand Gradient */
.footer-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #e8872a 0%, #d55a32 25%, #c92539 50%, #b81f5c 75%, #a6167e 100%);
    box-shadow: 0 4px 12px rgba(245, 133, 41, 0.4);
}

.footer-social-link.instagram i {
    color: #ffffff !important;
}

/* Twitter/X - Official Brand Colors */
.footer-social-link.twitter {
    background: #1DA1F2;
}

.footer-social-link.twitter:hover {
    background: #1A91DA;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.footer-social-link.twitter i {
    color: #ffffff !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
    }

    .footer-social-link i {
        font-size: 0.9rem;
    }
}