/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-end);
    color: var(--accent-end);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Specific social colors on hover */
.social-icon:nth-child(1):hover {
    color: #1877F2;
}

/* Facebook */
.social-icon:nth-child(2):hover {
    color: #000000;
}

/* Twitter/X */
.social-icon:nth-child(3):hover {
    color: #000000;
}

/* TikTok */
.social-icon:nth-child(4):hover {
    color: #25D366;
}

/* WhatsApp */

@media (max-width: 768px) {
    .social-icons {
        gap: 0.4rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}