/* ==================== SOCIAL LINKS - INTERACTIVE ICONS ==================== */

.hi-social-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hi-social-icon-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hi-social-icon-item:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hi-social-icon-item.has-link {
    background: rgba(15, 23, 42, 0.6);
}

.hi-social-icon-item.has-link:hover {
    background: rgba(15, 23, 42, 0.8);
}

.hi-social-icon-item.no-link {
    opacity: 0.6;
}

.hi-social-icon-item.no-link:hover {
    opacity: 1;
    border-color: rgba(168, 85, 247, 0.4);
}

.hi-social-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.hi-social-icon-item:hover .hi-social-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.hi-social-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.hi-social-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
}

.hi-social-add-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(56, 189, 248, 0.9));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.hi-social-add-badge svg {
    width: 16px;
    height: 16px;
}

/* Social Modal */
.hi-social-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.hi-social-modal.active {
    display: flex;
}

.hi-social-modal-content {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hi-social-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hi-social-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
}

.hi-social-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.1);
    color: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hi-social-modal-close:hover {
    background: rgba(148, 163, 184, 0.2);
    color: rgba(226, 232, 240, 0.95);
}

.hi-social-modal-body {
    margin-bottom: 24px;
}

.hi-social-modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 20px;
}

.hi-social-modal-body label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 8px;
}

.hi-social-modal-body input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.6);
    color: #f8fafc;
    font-size: 15px;
    transition: all 0.2s ease;
}

.hi-social-modal-body input:focus {
    outline: none;
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.hi-social-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.hi-social-modal-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.hi-social-modal-btn-primary {
    background: linear-gradient(135deg, #a855f7, #38bdf8);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.hi-social-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.hi-social-modal-btn-secondary {
    background: rgba(148, 163, 184, 0.1);
    color: rgba(226, 232, 240, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hi-social-modal-btn-secondary:hover {
    background: rgba(148, 163, 184, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hi-social-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .hi-social-modal-content {
        padding: 32px 24px;
    }
}
