/* Footer discret du profil */
.profile-footer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(68, 85, 102, 0.15);
}

.profile-footer-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.footer-link {
    color: var(--text-muted);
    transition: all 0.2s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: rgba(68, 85, 102, 0.4);
    font-size: 10px;
    user-select: none;
}

.profile-footer-copyright {
    font-size: 12px;
    color: rgba(68, 85, 102, 0.6);
    text-align: center;
}

/* Modal de contact */
#contactModal textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

#contactModal select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233b82f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

#contactModal select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-footer-actions {
        margin-top: 40px;
        padding-top: 28px;
        gap: 10px;
    }
    
    .profile-footer-text {
        font-size: 12px;
        gap: 10px;
    }
    
    .profile-footer-copyright {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .profile-footer-actions {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .profile-footer-text {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .footer-separator {
        display: none;
    }
    
    .profile-footer-text::before {
        content: '';
        width: 100%;
    }
}