    .employee-profile-page {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .profile-container {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    /* ============ هدر پروفایل ============ */
    .profile-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 40px 30px;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .profile-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }
    
    .profile-header::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }
    
    .profile-avatar-wrapper {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .profile-avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 5px solid rgba(255,255,255,0.4);
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .profile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .profile-avatar .no-photo {
        font-size: 60px;
        color: rgba(255,255,255,0.7);
    }
    
    .profile-title {
        flex: 1;
        z-index: 2;
    }
    
    .profile-title h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .profile-title .position {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 5px;
    }
    
    .profile-title .department-link {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    
    .profile-title .department-link:hover {
        color: white;
        text-decoration: underline;
    }
    
    .profile-title .employee-id {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 4px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-top: 8px;
        backdrop-filter: blur(5px);
    }
    
    .profile-badges {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
    }
    
    .profile-badge {
        background: rgba(255,255,255,0.2);
        padding: 4px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        backdrop-filter: blur(5px);
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    .profile-badge.manager {
        background: rgba(255,215,0,0.3);
        color: #ffd700;
    }
    
    /* ============ محتوای اصلی ============ */
    .profile-body {
        padding: 30px;
    }
    
    /* ============ کارت‌های اطلاعات ============ */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .info-card {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }
    
    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border-color: #667eea;
    }
    
    .info-card .info-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #6c757d;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .info-card .info-value {
        font-size: 1.1rem;
        color: #2d3436;
        font-weight: 500;
    }
    
    .info-card .info-value a {
        color: #667eea;
        text-decoration: none;
    }
    
    .info-card .info-value a:hover {
        text-decoration: underline;
    }
    
    .info-card .info-icon {
        float: right;
        font-size: 24px;
        color: #667eea;
        opacity: 0.5;
    }
    
    /* ============ بیوگرافی ============ */
    .bio-section {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        border: 1px solid #e9ecef;
    }
    
    .bio-section h4 {
        color: #2d3436;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .bio-section h4 i {
        color: #667eea;
        margin-right: 10px;
    }
    
    .bio-section .bio-content {
        line-height: 1.8;
        color: #495057;
    }
    
    /* ============ شبکه همکاران ============ */
    .colleagues-section {
        margin-bottom: 30px;
    }
    
    .colleagues-section h4 {
        color: #2d3436;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .colleagues-section h4 i {
        color: #667eea;
        margin-right: 10px;
    }
    
    .colleagues-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .colleague-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
    }
    
    .colleague-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #667eea;
    }
    
    .colleague-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0 auto 10px;
        overflow: hidden;
        background: #e9ecef;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 600;
        color: #6c757d;
    }
    
    .colleague-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .colleague-name {
        font-weight: 600;
        font-size: 0.95rem;
        color: #2d3436;
    }
    
    .colleague-position {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 2px;
    }
    
    .colleague-manager-badge {
        display: inline-block;
        background: #ffd700;
        color: #2d3436;
        font-size: 0.65rem;
        padding: 2px 10px;
        border-radius: 20px;
        margin-top: 5px;
        font-weight: 600;
    }
    
    /* ============ دکمه‌ها ============ */
    .profile-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #e9ecef;
    }
    
    .profile-actions .btn {
        padding: 10px 25px;
        border-radius: 10px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .profile-actions .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    /* ============ سایدبار ============ */
    .sidebar-stats {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e9ecef;
    }
    
    .sidebar-stats .stat-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .sidebar-stats .stat-item:last-child {
        border-bottom: none;
    }
    
    .sidebar-stats .stat-label {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    .sidebar-stats .stat-value {
        font-weight: 600;
        color: #2d3436;
    }
    
    /* ============ حالت موبایل ============ */
    @media (max-width: 768px) {
        .profile-avatar-wrapper {
            flex-direction: column;
            text-align: center;
        }
        
        .profile-avatar {
            width: 120px;
            height: 120px;
        }
        
        .profile-title h1 {
            font-size: 1.8rem;
        }
        
        .info-grid {
            grid-template-columns: 1fr;
        }
        
        .colleagues-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        
        .profile-body {
            padding: 20px;
        }
        
        .profile-actions {
            justify-content: center;
        }
    }
    
    /* ============ انیمیشن‌ها ============ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .profile-container {
        animation: fadeInUp 0.6s ease;
    }
    
    .info-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }
    
    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    .info-card:nth-child(3) { animation-delay: 0.3s; }
    .info-card:nth-child(4) { animation-delay: 0.4s; }
    .info-card:nth-child(5) { animation-delay: 0.5s; }
    .info-card:nth-child(6) { animation-delay: 0.6s; }